From 9c0f5f3b2516271e9e47030dadab50d808c6d6a9 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Wed, 11 Jun 2025 13:35:36 -0500 Subject: [PATCH 01/13] bypass wavelength matrix with partial reads --- .../softmax_pro_structure.py | 35 +- .../testdata/partial_plate.json | 155156 +++++++++++++++ .../testdata/partial_plate.txt | 379 + 3 files changed, 155564 insertions(+), 6 deletions(-) create mode 100644 tests/parsers/moldev_softmax_pro/testdata/partial_plate.json create mode 100644 tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index a3a196a6c..2cc267bf2 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -475,7 +475,11 @@ def get_measurement_section( reader.lines_as_df(lines=lines, sep="\t"), msg="unable to find data from plate block.", ) - set_columns(data, columns) + + # Truncate columns Series to match the actual number of data columns + truncated_columns = columns.iloc[: data.shape[1]] + + set_columns(data, truncated_columns) return data @@ -665,8 +669,8 @@ def create( ) def iter_data_elements(self, position: str) -> Iterator[DataElement]: - for wavelength_data in self.raw_data.wavelength_data: - yield wavelength_data.data_elements[position] + for plate_wavelength_data in self.raw_data.wavelength_data: + yield plate_wavelength_data.data_elements[position] @dataclass(frozen=True) @@ -799,8 +803,8 @@ def create( ) def iter_data_elements(self, position: str) -> Iterator[DataElement]: - for wavelength_data in self.raw_data.wavelength_data: - for measurement_data in wavelength_data.measurement_data: + for time_wavelength_data in self.raw_data.wavelength_data: + for measurement_data in time_wavelength_data.measurement_data: yield measurement_data.data_elements[position] @@ -911,11 +915,30 @@ def get_wavelengths_from_start_end_step( start_f + step_f * i for i in range(int((end_f - start_f) / step_f) + 1) ] + def _position_exists(self, position: str) -> bool: + """Check if a well position exists in the actual data (for partial plates).""" + if isinstance(self.block_data, PlateData): + # PlateWavelengthData - check data_elements directly + for plate_wavelength_data in self.block_data.raw_data.wavelength_data: + if position in plate_wavelength_data.data_elements: + return True + elif isinstance(self.block_data, TimeData): + # TimeWavelengthData - check measurement_data + for time_wavelength_data in self.block_data.raw_data.wavelength_data: + if any( + position in measurement.data_elements + for measurement in time_wavelength_data.measurement_data + ): + return True + return False + def iter_wells(self) -> Iterator[str]: cols, rows = NUM_WELLS_TO_PLATE_DIMENSIONS[self.header.num_wells] for row in range(rows): for col in range(1, cols + 1): - yield f"{num_to_chars(row)}{col}" + position = f"{num_to_chars(row)}{col}" + if self._position_exists(position): + yield position def iter_data_elements(self, position: str | list[str]) -> Iterator[DataElement]: position = [position] if isinstance(position, str) else position diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json new file mode 100644 index 000000000..66d71379d --- /dev/null +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json @@ -0,0 +1,155156 @@ +{ + "$asm.manifest": "http://purl.allotrope.org/manifests/plate-reader/REC/2024/06/plate-reader.manifest", + "plate reader aggregate document": { + "plate reader document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_0", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_256", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_512", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_768", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1024", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1280", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1536", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1792", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2048", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2304", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2560", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2816", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3072", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3328", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3584", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3840", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4096", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4352", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4608", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4864", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5120", + "sample document": { + "sample identifier": "Plate1 A1", + "location identifier": "A1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_257", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0979, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_513", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_769", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1025", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1281", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1537", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1793", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2049", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0959, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2305", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0956, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2561", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0967, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2817", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3073", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3329", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3585", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3841", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4097", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4353", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4609", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4865", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5121", + "sample document": { + "sample identifier": "Plate1 A2", + "location identifier": "A2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0967, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_258", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_514", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_770", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1026", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1282", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0915, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1538", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1794", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0889, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2050", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0901, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2306", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2562", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0919, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2818", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3074", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3330", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0938, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3586", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3842", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4098", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4354", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4610", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0977, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4866", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5122", + "sample document": { + "sample identifier": "Plate1 A3", + "location identifier": "A3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_259", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_515", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_771", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1027", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0967, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1283", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1539", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1795", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2051", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2307", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2563", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2819", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3075", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3331", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3587", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3843", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4099", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4355", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0979, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4611", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4867", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5123", + "sample document": { + "sample identifier": "Plate1 A4", + "location identifier": "A4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0983, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_260", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_516", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_772", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0951, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1028", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1284", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1540", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1796", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2052", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2308", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2564", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2820", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3076", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3332", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3588", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3844", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4100", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4356", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4612", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4868", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5124", + "sample document": { + "sample identifier": "Plate1 A5", + "location identifier": "A5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_261", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_517", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_773", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1029", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1285", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0981, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1541", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1797", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2053", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2309", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2565", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2821", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3077", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3333", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3589", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3845", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4101", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4357", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4613", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0977, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4869", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5125", + "sample document": { + "sample identifier": "Plate1 A6", + "location identifier": "A6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_6", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_262", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_518", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_774", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1030", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1286", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1542", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0951, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1798", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2054", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2310", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2566", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2822", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3078", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3334", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3590", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3846", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4102", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4358", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4614", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4870", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5126", + "sample document": { + "sample identifier": "Plate1 A7", + "location identifier": "A7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_7", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_263", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_519", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_775", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1031", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1287", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1543", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1799", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2055", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2311", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2567", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2823", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3079", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3335", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0957, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3591", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3847", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4103", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0951, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4359", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4615", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0956, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4871", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5127", + "sample document": { + "sample identifier": "Plate1 A8", + "location identifier": "A8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_8", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_264", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_520", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_776", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1032", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1288", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1544", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1800", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2056", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2312", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0956, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2568", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2824", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3080", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3336", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3592", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0945, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3848", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4104", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0939, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4360", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4616", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4872", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5128", + "sample document": { + "sample identifier": "Plate1 A9", + "location identifier": "A9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0923, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_9", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_265", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_521", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_777", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1033", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1289", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1545", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0988, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1801", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2057", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2313", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2569", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0977, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2825", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3081", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3337", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3593", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3849", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4105", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4361", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4617", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4873", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5129", + "sample document": { + "sample identifier": "Plate1 A10", + "location identifier": "A10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_10", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_266", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_522", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_778", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1034", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1290", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1546", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1802", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2058", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0999, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2314", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2570", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2826", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3082", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3338", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3594", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3850", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4106", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4362", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4618", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4874", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5130", + "sample document": { + "sample identifier": "Plate1 A11", + "location identifier": "A11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_11", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_267", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_523", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_779", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1035", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1291", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1547", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1803", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2059", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2315", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1133, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2571", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2827", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3083", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3339", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3595", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3851", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4107", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4363", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4619", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4875", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5131", + "sample document": { + "sample identifier": "Plate1 A12", + "location identifier": "A12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_12", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1302, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_268", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1314, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_524", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1325, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_780", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1327, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1036", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1325, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1292", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1318, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1548", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1312, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1804", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1317, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2060", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1306, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2316", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1301, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2572", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1298, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2828", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1291, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3084", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1282, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3340", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3596", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1271, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3852", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1269, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4108", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1258, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4364", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1251, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4620", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1236, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4876", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1227, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5132", + "sample document": { + "sample identifier": "Plate1 A13", + "location identifier": "A13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1215, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_13", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1248, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_269", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1255, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_525", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1258, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_781", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1256, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1037", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1259, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1293", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1263, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1549", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1805", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1248, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2061", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.126, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2317", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1267, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2573", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1262, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2829", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1251, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3085", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1239, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3341", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1225, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3597", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1212, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3853", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1203, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4109", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4365", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4621", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4877", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5133", + "sample document": { + "sample identifier": "Plate1 A14", + "location identifier": "A14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_14", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_270", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_526", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_782", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1038", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1294", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1550", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1806", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2062", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2318", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2574", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2830", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3086", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3342", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3598", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3854", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4110", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4366", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4622", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4878", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5134", + "sample document": { + "sample identifier": "Plate1 A15", + "location identifier": "A15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_15", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_271", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_527", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_783", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1039", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1295", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1551", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1807", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2063", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2319", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2575", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2831", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3087", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3343", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3599", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3855", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4111", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4367", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4623", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4879", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5135", + "sample document": { + "sample identifier": "Plate1 A16", + "location identifier": "A16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_16", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_272", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0927, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_528", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_784", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1040", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1296", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1552", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0945, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1808", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0951, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2064", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2320", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2576", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2832", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3088", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3344", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3600", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3856", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0956, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4112", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0951, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4368", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4624", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4880", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0939, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5136", + "sample document": { + "sample identifier": "Plate1 B1", + "location identifier": "B1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_17", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_273", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_529", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_785", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1041", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1297", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1553", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1809", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2065", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2321", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2577", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2833", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3089", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3345", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3601", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3857", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4113", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4369", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4625", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0394, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4881", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5137", + "sample document": { + "sample identifier": "Plate1 B2", + "location identifier": "B2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_18", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_274", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0938, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_530", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_786", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1042", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1298", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0963, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1554", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1810", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2066", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0928, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2322", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2578", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0957, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2834", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3090", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3346", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3602", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3858", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4114", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4370", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4626", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4882", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5138", + "sample document": { + "sample identifier": "Plate1 B3", + "location identifier": "B3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0981, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_19", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_275", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_531", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_787", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1043", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1299", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1555", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1811", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2067", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2323", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2579", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2835", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3091", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3347", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3603", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3859", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4115", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4371", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4627", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4883", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5139", + "sample document": { + "sample identifier": "Plate1 B4", + "location identifier": "B4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0394, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_20", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_276", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_532", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_788", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1044", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1300", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1556", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1812", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2068", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2324", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2580", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2836", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3092", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3348", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3604", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3860", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4116", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4372", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4628", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4884", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5140", + "sample document": { + "sample identifier": "Plate1 B5", + "location identifier": "B5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_21", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_277", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_533", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_789", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1045", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1301", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1557", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1813", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2069", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2325", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2581", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2837", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3093", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3349", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3605", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3861", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4117", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4373", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4629", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4885", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5141", + "sample document": { + "sample identifier": "Plate1 B6", + "location identifier": "B6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0394, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_22", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0862, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_278", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0863, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_534", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0869, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_790", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0894, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1046", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1302", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0914, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1558", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0908, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1814", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2070", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0911, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2326", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2582", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0913, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2838", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3094", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0902, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3350", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0897, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3606", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0894, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3862", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4118", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0885, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4374", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0886, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4630", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0886, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4886", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0888, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5142", + "sample document": { + "sample identifier": "Plate1 B7", + "location identifier": "B7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0887, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_23", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0515, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_279", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_535", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0512, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_791", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0511, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1047", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1303", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1559", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1815", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2071", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2327", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2583", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2839", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3095", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3351", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0498, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3607", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3863", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4119", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4375", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4631", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4887", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5143", + "sample document": { + "sample identifier": "Plate1 B8", + "location identifier": "B8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_24", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_280", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_536", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_792", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1048", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1304", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1560", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1816", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2072", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2328", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2584", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0988, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2840", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0983, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3096", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3352", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3608", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0959, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3864", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4120", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4376", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4632", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4888", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0924, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5144", + "sample document": { + "sample identifier": "Plate1 B9", + "location identifier": "B9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_25", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_281", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_537", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_793", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1049", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1305", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1561", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1817", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2073", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2329", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2585", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2841", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3097", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3353", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3609", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3865", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4121", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4377", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4633", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4889", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5145", + "sample document": { + "sample identifier": "Plate1 B10", + "location identifier": "B10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0389, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_26", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0934, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_282", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_538", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_794", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1050", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1306", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1562", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1818", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2074", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2330", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2586", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2842", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3098", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3354", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3610", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0959, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3866", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0948, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4122", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4378", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0913, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4634", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0904, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4890", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0904, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5146", + "sample document": { + "sample identifier": "Plate1 B11", + "location identifier": "B11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_27", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_283", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_539", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_795", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1051", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1307", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1563", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1819", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2075", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2331", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2587", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2843", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3099", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3355", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3611", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0388, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3867", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0387, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4123", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4379", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4635", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0382, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4891", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0382, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5147", + "sample document": { + "sample identifier": "Plate1 B12", + "location identifier": "B12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0382, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_28", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1366, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_284", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.138, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_540", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1385, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_796", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1383, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1052", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1308", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1388, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1564", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1385, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1820", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2076", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2332", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1376, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2588", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1367, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2844", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1356, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3100", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1347, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3356", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1345, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3612", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1338, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3868", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1333, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4124", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4380", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1298, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4636", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1273, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4892", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1254, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5148", + "sample document": { + "sample identifier": "Plate1 B13", + "location identifier": "B13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1241, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_29", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_285", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_541", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_797", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1053", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1309", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1565", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1821", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2077", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2333", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2589", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2845", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3101", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3357", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3613", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3869", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4125", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4381", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4637", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4893", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5149", + "sample document": { + "sample identifier": "Plate1 B14", + "location identifier": "B14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_30", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_286", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_542", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_798", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1054", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1310", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1566", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1822", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2078", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2334", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2590", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2846", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3102", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3358", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3614", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3870", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4126", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4382", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4638", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4894", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5150", + "sample document": { + "sample identifier": "Plate1 B15", + "location identifier": "B15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_31", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_287", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_543", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0506, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_799", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1055", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1311", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1567", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1823", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2079", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2335", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2591", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2847", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3103", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3359", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3615", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3871", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4127", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4383", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4639", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4895", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5151", + "sample document": { + "sample identifier": "Plate1 B16", + "location identifier": "B16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_32", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1515, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_288", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1567, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_544", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_800", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.157, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1056", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1543, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1312", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1571, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1568", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1824", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1608, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2080", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1597, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2336", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2592", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1602, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2848", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3104", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.156, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3360", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1525, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3616", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3872", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4128", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4384", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4640", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1358, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4896", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1326, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5152", + "sample document": { + "sample identifier": "Plate1 C1", + "location identifier": "C1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1287, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_33", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_289", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1588, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_545", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1589, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_801", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1057", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1595, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1313", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1569", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1599, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1825", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1595, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2081", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1586, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2337", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1585, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2593", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.158, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2849", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1567, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3105", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1551, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3361", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1528, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3617", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3873", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4129", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4385", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4641", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.138, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4897", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1345, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5153", + "sample document": { + "sample identifier": "Plate1 C2", + "location identifier": "C2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1309, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_34", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_290", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_546", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_802", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1058", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1314", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1570", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1826", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2082", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2338", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2594", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2850", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3106", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3362", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3618", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3874", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4130", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4386", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4642", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4898", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5154", + "sample document": { + "sample identifier": "Plate1 C3", + "location identifier": "C3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_35", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_291", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_547", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_803", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1059", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1315", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1571", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1827", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2083", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2339", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2595", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2851", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3107", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3363", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3619", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3875", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4131", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4387", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4643", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4899", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5155", + "sample document": { + "sample identifier": "Plate1 C4", + "location identifier": "C4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_36", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_292", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_548", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_804", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1060", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1316", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1572", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1828", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2084", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2340", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2596", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2852", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3108", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3364", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3620", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3876", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4132", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4388", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4644", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4900", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5156", + "sample document": { + "sample identifier": "Plate1 C5", + "location identifier": "C5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_37", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_293", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_549", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_805", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1061", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1317", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1573", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1829", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2085", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2341", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2597", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2853", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3109", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3365", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3621", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3877", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4133", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4389", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4645", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4901", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5157", + "sample document": { + "sample identifier": "Plate1 C6", + "location identifier": "C6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_38", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_294", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_550", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1126, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_806", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1062", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1152, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1318", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1153, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1574", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1830", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1156, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2086", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2342", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2598", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2854", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3110", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1175, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3366", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3622", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3878", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1166, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4134", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4390", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1186, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4646", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4902", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1171, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5158", + "sample document": { + "sample identifier": "Plate1 C7", + "location identifier": "C7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1168, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_39", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_295", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_551", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_807", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1063", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1319", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1575", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1831", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2087", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2343", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2599", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2855", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3111", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3367", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3623", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3879", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4135", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4391", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4647", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4903", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5159", + "sample document": { + "sample identifier": "Plate1 C8", + "location identifier": "C8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_40", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1627, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_296", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1642, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_552", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1655, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_808", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1659, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1064", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1320", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1679, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1576", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1675, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1832", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1665, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2088", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.165, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2344", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1636, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2600", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1618, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2856", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3112", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1551, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3368", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3624", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3880", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4136", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4392", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.136, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4648", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1322, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4904", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1296, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5160", + "sample document": { + "sample identifier": "Plate1 C9", + "location identifier": "C9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1262, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_41", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1738, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_297", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1754, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_553", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1758, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_809", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1766, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1065", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1771, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1321", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1775, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1577", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1773, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1833", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1766, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2089", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1754, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2345", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2601", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1717, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2857", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1686, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3113", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1648, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3369", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1602, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3625", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1553, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3881", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4137", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4393", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.143, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4649", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4905", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1367, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5161", + "sample document": { + "sample identifier": "Plate1 C10", + "location identifier": "C10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1335, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_42", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_298", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_554", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_810", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1066", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1322", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1578", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1123, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1834", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2090", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2346", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1126, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2602", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1135, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2858", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1133, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3114", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3370", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1153, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3626", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3882", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1186, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4138", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4394", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4650", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4906", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1135, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5162", + "sample document": { + "sample identifier": "Plate1 C11", + "location identifier": "C11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1121, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_43", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_299", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_555", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_811", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1144, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1067", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1163, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1323", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1579", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1835", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1204, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2091", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1218, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2347", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1215, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2603", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.121, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2859", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1209, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3115", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1204, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3371", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1197, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3627", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3883", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4139", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4395", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4651", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4907", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1165, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5163", + "sample document": { + "sample identifier": "Plate1 C12", + "location identifier": "C12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_44", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_300", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_556", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_812", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1068", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1324", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1580", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1836", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2092", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2348", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2604", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2860", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3116", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3372", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3628", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3884", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4140", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4396", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4652", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4908", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5164", + "sample document": { + "sample identifier": "Plate1 C13", + "location identifier": "C13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_45", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_301", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_557", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_813", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1069", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1325", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1581", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1837", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2093", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2349", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2605", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2861", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3117", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3373", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3629", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3885", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4141", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4397", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4653", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4909", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5165", + "sample document": { + "sample identifier": "Plate1 C14", + "location identifier": "C14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_46", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_302", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_558", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_814", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1070", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1326", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1582", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1838", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2094", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2350", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2606", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2862", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3118", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3374", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3630", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3886", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4142", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4398", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4654", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0912, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4910", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5166", + "sample document": { + "sample identifier": "Plate1 C15", + "location identifier": "C15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0868, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_47", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_303", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_559", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_815", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1071", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1327", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1583", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1839", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2095", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2351", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2607", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1362, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2863", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1333, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3119", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1312, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3375", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1286, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3631", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1263, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3887", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1239, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4143", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1218, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4399", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1198, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4655", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4911", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1157, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5167", + "sample document": { + "sample identifier": "Plate1 C16", + "location identifier": "C16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1131, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_48", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1667, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_304", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.164, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_560", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1621, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_816", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1072", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1615, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1328", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1641, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1584", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1658, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1840", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1662, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2096", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1664, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2352", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.166, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2608", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1655, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2864", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1644, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3120", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1623, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3376", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1584, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3632", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1538, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3888", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4144", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4400", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4656", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1357, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4912", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1319, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5168", + "sample document": { + "sample identifier": "Plate1 D1", + "location identifier": "D1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1283, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_49", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_305", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_561", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_817", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1073", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1329", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1585", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1841", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2097", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2353", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2609", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2865", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3121", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3377", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3633", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3889", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4145", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4401", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4657", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4913", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5169", + "sample document": { + "sample identifier": "Plate1 D2", + "location identifier": "D2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_50", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_306", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_562", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_818", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1074", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1330", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1586", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1842", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2098", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2354", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2610", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2866", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3122", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3378", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3634", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3890", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4146", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4402", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4658", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4914", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5170", + "sample document": { + "sample identifier": "Plate1 D3", + "location identifier": "D3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_51", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_307", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_563", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_819", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1075", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1331", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1587", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1843", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2099", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2355", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2611", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2867", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3123", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3379", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3635", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3891", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4147", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4403", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4659", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4915", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5171", + "sample document": { + "sample identifier": "Plate1 D4", + "location identifier": "D4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_52", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_308", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_564", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_820", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1076", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1332", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1588", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1844", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2100", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2356", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2612", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2868", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3124", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3380", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3636", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3892", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4148", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4404", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4660", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4916", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5172", + "sample document": { + "sample identifier": "Plate1 D5", + "location identifier": "D5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_53", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_309", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_565", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_821", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1077", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1333", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1589", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1845", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2101", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2357", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2613", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2869", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3125", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3381", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3637", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3893", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4149", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4405", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4661", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4917", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5173", + "sample document": { + "sample identifier": "Plate1 D6", + "location identifier": "D6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_54", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_310", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1123, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_566", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_822", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1135, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1078", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1334", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1163, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1590", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1171, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1846", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2102", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2358", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2614", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1168, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2870", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1156, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3126", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1146, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3382", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3638", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1136, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3894", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1133, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4150", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1133, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4406", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1139, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4662", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1144, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4918", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5174", + "sample document": { + "sample identifier": "Plate1 D7", + "location identifier": "D7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_55", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_311", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_567", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_823", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1079", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1335", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1591", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1847", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2103", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2359", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2615", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2871", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3127", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3383", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3639", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3895", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4151", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4407", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4663", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4919", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5175", + "sample document": { + "sample identifier": "Plate1 D8", + "location identifier": "D8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_56", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1742, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_312", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1773, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_568", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1794, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_824", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1795, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1080", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.179, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1336", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1772, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1592", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1763, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1848", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1758, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2104", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1732, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2360", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1727, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2616", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1706, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2872", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3128", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1681, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3384", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1644, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3640", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1634, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3896", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1583, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4152", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1557, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4408", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.151, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4664", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4920", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5176", + "sample document": { + "sample identifier": "Plate1 D9", + "location identifier": "D9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_57", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_313", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_569", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_825", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1081", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1337", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1593", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1849", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2105", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2361", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2617", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2873", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3129", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3385", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3641", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3897", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4153", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4409", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4665", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4921", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5177", + "sample document": { + "sample identifier": "Plate1 D10", + "location identifier": "D10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_58", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_314", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_570", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_826", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1082", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1338", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1594", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1850", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2106", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2362", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2618", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2874", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1121, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3130", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1128, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3386", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3642", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1141, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3898", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4154", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1158, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4410", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1156, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4666", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4922", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1138, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5178", + "sample document": { + "sample identifier": "Plate1 D11", + "location identifier": "D11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_59", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_315", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_571", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_827", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1083", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1339", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1595", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1851", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2107", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2363", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2619", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2875", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3131", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3387", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3643", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3899", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4155", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4411", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4667", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4923", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5179", + "sample document": { + "sample identifier": "Plate1 D12", + "location identifier": "D12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_60", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_316", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_572", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_828", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1084", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1340", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1596", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1852", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2108", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2364", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2620", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2876", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3132", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3388", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3644", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3900", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4156", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4412", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4668", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4924", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5180", + "sample document": { + "sample identifier": "Plate1 D13", + "location identifier": "D13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_61", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_317", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_573", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_829", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1085", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1341", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1597", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1853", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2109", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2365", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2621", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2877", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3133", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3389", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3645", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3901", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4157", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4413", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4669", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4925", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5181", + "sample document": { + "sample identifier": "Plate1 D14", + "location identifier": "D14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_62", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_318", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_574", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_830", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1086", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1342", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1598", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1854", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2110", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2366", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2622", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2878", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3134", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0981, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3390", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3646", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3902", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0938, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4158", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4414", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.09, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4670", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0878, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4926", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5182", + "sample document": { + "sample identifier": "Plate1 D15", + "location identifier": "D15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0839, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_63", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0571, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_319", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0571, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_575", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0569, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_831", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1087", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1343", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0567, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1599", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0568, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1855", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0567, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2111", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0567, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2367", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0564, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2623", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0562, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2879", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0562, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3135", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0563, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3391", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0561, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3647", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0561, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3903", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4159", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4415", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4671", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4927", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0558, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5183", + "sample document": { + "sample identifier": "Plate1 D16", + "location identifier": "D16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0558, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_64", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1718, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_320", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_576", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1773, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_832", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.179, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1088", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1799, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1344", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1791, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1600", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1781, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1856", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1771, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2112", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1761, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2368", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1766, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2624", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1758, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2880", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1741, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3136", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1715, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3392", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1679, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3648", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1644, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3904", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1618, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4160", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1578, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4416", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1546, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4672", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1512, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4928", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5184", + "sample document": { + "sample identifier": "Plate1 E1", + "location identifier": "E1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_65", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.165, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_321", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1659, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_577", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1662, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_833", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1664, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1089", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1669, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1345", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1664, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1601", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1654, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1857", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1634, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2113", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1614, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2369", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.161, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2625", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2881", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1588, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3137", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.157, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3393", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1543, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3649", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1518, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3905", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4161", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4417", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4673", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4929", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1373, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5185", + "sample document": { + "sample identifier": "Plate1 E2", + "location identifier": "E2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1342, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_66", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_322", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0999, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_578", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_834", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1090", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1346", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1602", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1858", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2114", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2370", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2626", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2882", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3138", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3394", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3650", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3906", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4162", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4418", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4674", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4930", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5186", + "sample document": { + "sample identifier": "Plate1 E3", + "location identifier": "E3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_67", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_323", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_579", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_835", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1091", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1347", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1603", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1859", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2115", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2371", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2627", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2883", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3139", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3395", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3651", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3907", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4163", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4419", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4675", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4931", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5187", + "sample document": { + "sample identifier": "Plate1 E4", + "location identifier": "E4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_68", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_324", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_580", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_836", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1092", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1348", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1604", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1860", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2116", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2372", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2628", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2884", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3140", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3396", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3652", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3908", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4164", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4420", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4676", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4932", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5188", + "sample document": { + "sample identifier": "Plate1 E5", + "location identifier": "E5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_69", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_325", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_581", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_837", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1093", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1349", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1605", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1861", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2117", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2373", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2629", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2885", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3141", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3397", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3653", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3909", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4165", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4421", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4677", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4933", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5189", + "sample document": { + "sample identifier": "Plate1 E6", + "location identifier": "E6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_70", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_326", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_582", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_838", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1094", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1350", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1606", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1862", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2118", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2374", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2630", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2886", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3142", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3398", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3654", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3910", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4166", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4422", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4678", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4934", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5190", + "sample document": { + "sample identifier": "Plate1 E7", + "location identifier": "E7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_71", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_327", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_583", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_839", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1126, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1095", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1145, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1351", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1145, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1607", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1142, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1863", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2119", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1177, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2375", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2631", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2887", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3143", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3399", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3655", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3911", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4167", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4423", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4679", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1168, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4935", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5191", + "sample document": { + "sample identifier": "Plate1 E8", + "location identifier": "E8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_72", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_328", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_584", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_840", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1096", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1352", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1608", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1864", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1127, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2120", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1138, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2376", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1152, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2632", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2888", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1158, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3144", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3400", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3656", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1163, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3912", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4168", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4424", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4680", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1179, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4936", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5192", + "sample document": { + "sample identifier": "Plate1 E9", + "location identifier": "E9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_73", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_329", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_585", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_841", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1097", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1353", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1609", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1865", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2121", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2377", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2633", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2889", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1123, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3145", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3401", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3657", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3913", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4169", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4425", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4681", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4937", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5193", + "sample document": { + "sample identifier": "Plate1 E10", + "location identifier": "E10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_74", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_330", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_586", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_842", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1098", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1354", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1610", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1866", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2122", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2378", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2634", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2890", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3146", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3402", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3658", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3914", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4170", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4426", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4682", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4938", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5194", + "sample document": { + "sample identifier": "Plate1 E11", + "location identifier": "E11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_75", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_331", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_587", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_843", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1099", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1355", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1611", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1867", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2123", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2379", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1136, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2635", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1138, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2891", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1139, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3147", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3403", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3659", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3915", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4171", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4427", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4683", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4939", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5195", + "sample document": { + "sample identifier": "Plate1 E12", + "location identifier": "E12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_76", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1544, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_332", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_588", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1566, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_844", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1579, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1100", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1356", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1596, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1612", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1598, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1868", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2124", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.157, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2380", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1563, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2636", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1549, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2892", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1531, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3148", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1522, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3404", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.151, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3660", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3916", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4172", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4428", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4684", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4940", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1375, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5196", + "sample document": { + "sample identifier": "Plate1 E13", + "location identifier": "E13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1345, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_77", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1571, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_333", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1568, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_589", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1565, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_845", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1586, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1101", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1612, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1357", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1617, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1613", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1612, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1869", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.16, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2125", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1583, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2381", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1573, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2637", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1556, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2893", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1536, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3149", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3405", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.149, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3661", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3917", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4173", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.141, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4429", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1387, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4685", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1359, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4941", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1332, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5197", + "sample document": { + "sample identifier": "Plate1 E14", + "location identifier": "E14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1304, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_78", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_334", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_590", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_846", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1102", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1358", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1614", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1870", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2126", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2382", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2638", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2894", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3150", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3406", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3662", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3918", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4174", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4430", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4686", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4942", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5198", + "sample document": { + "sample identifier": "Plate1 E15", + "location identifier": "E15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_79", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_335", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_591", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_847", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1103", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1359", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1615", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1871", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2127", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2383", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2639", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2895", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3151", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3407", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3663", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3919", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4175", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4431", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4687", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4943", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5199", + "sample document": { + "sample identifier": "Plate1 E16", + "location identifier": "E16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_80", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1605, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_336", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1602, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_592", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1594, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_848", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1621, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1104", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.162, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1360", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1635, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1616", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1649, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1872", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1652, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2128", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1645, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2384", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1638, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2640", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1626, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2896", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1607, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3152", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1588, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3408", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1563, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3664", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1532, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3920", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4176", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.145, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4432", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4688", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1378, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4944", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.135, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5200", + "sample document": { + "sample identifier": "Plate1 F1", + "location identifier": "F1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1327, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_81", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_337", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_593", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_849", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1105", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1361", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1617", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1873", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2129", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2385", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2641", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2897", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3153", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3409", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3665", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3921", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4177", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4433", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4689", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4945", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5201", + "sample document": { + "sample identifier": "Plate1 F2", + "location identifier": "F2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_82", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_338", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0988, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_594", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_850", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1106", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1362", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1618", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1874", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2130", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2386", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2642", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2898", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3154", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3410", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3666", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3922", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4178", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4434", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4690", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4946", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5202", + "sample document": { + "sample identifier": "Plate1 F3", + "location identifier": "F3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_83", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_339", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_595", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_851", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1107", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1363", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1619", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1875", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2131", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2387", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2643", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2899", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3155", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3411", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3667", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3923", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4179", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4435", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4691", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4947", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5203", + "sample document": { + "sample identifier": "Plate1 F4", + "location identifier": "F4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_84", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_340", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_596", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_852", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1108", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1364", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1620", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1876", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2132", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2388", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2644", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2900", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3156", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3412", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3668", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3924", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4180", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4436", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4692", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4948", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5204", + "sample document": { + "sample identifier": "Plate1 F5", + "location identifier": "F5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_85", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_341", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_597", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_853", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1109", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1365", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1621", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1877", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2133", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2389", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2645", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2901", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3157", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3413", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3669", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3925", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4181", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4437", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4693", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4949", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5205", + "sample document": { + "sample identifier": "Plate1 F6", + "location identifier": "F6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_86", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_342", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_598", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_854", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1110", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1366", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1622", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1878", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2134", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2390", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2646", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1131, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2902", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3158", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1122, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3414", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3670", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3926", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4182", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4438", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4694", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4950", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5206", + "sample document": { + "sample identifier": "Plate1 F7", + "location identifier": "F7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_87", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0617, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_343", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0615, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_599", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0613, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_855", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0612, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1111", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0613, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1367", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0611, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1623", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1879", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2135", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2391", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0611, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2647", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2903", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0611, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3159", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3415", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3671", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0608, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3927", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0607, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4183", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0605, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4439", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0606, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4695", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0603, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4951", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0604, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5207", + "sample document": { + "sample identifier": "Plate1 F8", + "location identifier": "F8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0602, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_88", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_344", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_600", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_856", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1112", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1368", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1624", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1880", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2136", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2392", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2648", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2904", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1123, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3160", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3416", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1121, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3672", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1122, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3928", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4184", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4440", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4696", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4952", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5208", + "sample document": { + "sample identifier": "Plate1 F9", + "location identifier": "F9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_89", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_345", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_601", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_857", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1113", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1369", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1625", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1881", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2137", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2393", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2649", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2905", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3161", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3417", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3673", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3929", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4185", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4441", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4697", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4953", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5209", + "sample document": { + "sample identifier": "Plate1 F10", + "location identifier": "F10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_90", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_346", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_602", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_858", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1114", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1370", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1626", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1882", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2138", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2394", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2650", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2906", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3162", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3418", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3674", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3930", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4186", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4442", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4698", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4954", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5210", + "sample document": { + "sample identifier": "Plate1 F11", + "location identifier": "F11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_91", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_347", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_603", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_859", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1115", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1371", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1627", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1883", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2139", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2395", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2651", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2907", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3163", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3419", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3675", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3931", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4187", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4443", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4699", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4955", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5211", + "sample document": { + "sample identifier": "Plate1 F12", + "location identifier": "F12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_92", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1606, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_348", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.162, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_604", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1616, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_860", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.162, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1116", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1633, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1372", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1642, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1628", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1632, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1884", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1618, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2140", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1591, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2396", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1579, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2652", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1561, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2908", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1535, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3164", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1517, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3420", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3676", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3932", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4188", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.144, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4444", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4700", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4956", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1362, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5212", + "sample document": { + "sample identifier": "Plate1 F13", + "location identifier": "F13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1333, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_93", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_349", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_605", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_861", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1117", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1373", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1629", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1885", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2141", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2397", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2653", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2909", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3165", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3421", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3677", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3933", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4189", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4445", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4701", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4957", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5213", + "sample document": { + "sample identifier": "Plate1 F14", + "location identifier": "F14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_94", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_350", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_606", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_862", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1118", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1374", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1630", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1886", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2142", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2398", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2654", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2910", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3166", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3422", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3678", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3934", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4190", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4446", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4702", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4958", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5214", + "sample document": { + "sample identifier": "Plate1 F15", + "location identifier": "F15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_95", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_351", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_607", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_863", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1119", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1375", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1631", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1887", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2143", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2399", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2655", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2911", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3167", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3423", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3679", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3935", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4191", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4447", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4703", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4959", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5215", + "sample document": { + "sample identifier": "Plate1 F16", + "location identifier": "F16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_96", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_352", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1721, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_608", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1699, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_864", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1705, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1120", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1718, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1376", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1694, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1632", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1659, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1888", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1648, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2144", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1646, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2400", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1644, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2656", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1637, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2912", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1619, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3168", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3424", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1573, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3680", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1544, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3936", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1516, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4192", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4448", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4704", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.142, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4960", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5216", + "sample document": { + "sample identifier": "Plate1 G1", + "location identifier": "G1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1358, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_97", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1698, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_353", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_609", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1704, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_865", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.175, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1121", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1752, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1377", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1731, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1633", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1697, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1889", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1673, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2145", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1667, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2401", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1683, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2657", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1684, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2913", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1673, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3169", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1661, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3425", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1637, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3681", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.161, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3937", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1584, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4193", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1549, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4449", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4705", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4961", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5217", + "sample document": { + "sample identifier": "Plate1 G2", + "location identifier": "G2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1385, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_98", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1292, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_354", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1297, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_610", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1304, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_866", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1321, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1122", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1315, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1378", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1324, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1634", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1329, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1890", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1325, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2146", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.132, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2402", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1324, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2658", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1327, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2914", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.132, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3170", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3426", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1297, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3682", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1285, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3938", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4194", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1262, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4450", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1253, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4706", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1241, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4962", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.123, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5218", + "sample document": { + "sample identifier": "Plate1 G3", + "location identifier": "G3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1218, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_99", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1309, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_355", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.131, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_611", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1326, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_867", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1346, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1123", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1379", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1326, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1635", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1314, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1891", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1312, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2147", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1317, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2403", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1327, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2659", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1336, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2915", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1336, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3171", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1337, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3427", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1325, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3683", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1318, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3939", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1309, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4195", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.13, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4451", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4707", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1276, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4963", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1267, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5219", + "sample document": { + "sample identifier": "Plate1 G4", + "location identifier": "G4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1254, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_100", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_356", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_612", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_868", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1124", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1380", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1636", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1892", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2148", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2404", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2660", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2916", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3172", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3428", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3684", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3940", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4196", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4452", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4708", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4964", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5220", + "sample document": { + "sample identifier": "Plate1 G5", + "location identifier": "G5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_101", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_357", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_613", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_869", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1125", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1381", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1637", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1893", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2149", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2405", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2661", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2917", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3173", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3429", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3685", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3941", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4197", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4453", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4709", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4965", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5221", + "sample document": { + "sample identifier": "Plate1 G6", + "location identifier": "G6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_102", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1696, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_358", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1706, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_614", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1707, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_870", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.171, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1126", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1712, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1382", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1713, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1638", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1711, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1894", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1712, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2150", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1706, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2406", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1695, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2662", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1678, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2918", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1655, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3174", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.163, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3430", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1595, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3686", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3942", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1521, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4198", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4454", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4710", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.141, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4966", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1381, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5222", + "sample document": { + "sample identifier": "Plate1 G7", + "location identifier": "G7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1351, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_103", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1797, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_359", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1807, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_615", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1813, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_871", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1823, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1127", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1829, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1383", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1828, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1639", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1895", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1828, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2151", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1824, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2407", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1818, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2663", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.18, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2919", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1772, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3175", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3431", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1699, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3687", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1656, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3943", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1612, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4199", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1575, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4455", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1545, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4711", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.151, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4967", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5223", + "sample document": { + "sample identifier": "Plate1 G8", + "location identifier": "G8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_104", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0906, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_360", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0913, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_616", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0913, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_872", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0922, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1128", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0927, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1384", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1640", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1896", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0926, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2152", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2408", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2664", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0927, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2920", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0939, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3176", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3432", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3688", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3944", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4200", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4456", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4712", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4968", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5224", + "sample document": { + "sample identifier": "Plate1 G9", + "location identifier": "G9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0983, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_105", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_361", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_617", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_873", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1129", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1385", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1641", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1897", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2153", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2409", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2665", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2921", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3177", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3433", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3689", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3945", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4201", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4457", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4713", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4969", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5225", + "sample document": { + "sample identifier": "Plate1 G10", + "location identifier": "G10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_106", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_362", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_618", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_874", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1130", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1386", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1642", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1898", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2154", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2410", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2666", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1128, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2922", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1128, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3178", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1123, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3434", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1122, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3690", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3946", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1126, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4202", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4458", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4714", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4970", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5226", + "sample document": { + "sample identifier": "Plate1 G11", + "location identifier": "G11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_107", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_363", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_619", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_875", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1131", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1387", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1643", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1899", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1116, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2155", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2411", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2667", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2923", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3179", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3435", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3691", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3947", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4203", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4459", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4715", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4971", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5227", + "sample document": { + "sample identifier": "Plate1 G12", + "location identifier": "G12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_108", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_364", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.197, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_620", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_876", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1132", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.2004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1388", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1999, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1644", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1900", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2156", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2412", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1906, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2668", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.189, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2924", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1862, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3180", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1835, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3436", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1798, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3692", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1768, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3948", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1739, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4204", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1699, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4460", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1665, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4716", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1627, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4972", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1591, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5228", + "sample document": { + "sample identifier": "Plate1 G13", + "location identifier": "G13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1552, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_109", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_365", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1924, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_621", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_877", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1956, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1133", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1389", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1645", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1916, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1901", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2157", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1886, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2413", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1877, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2669", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1862, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2925", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1839, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3181", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1813, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3437", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1777, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3693", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3949", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1698, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4205", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1657, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4461", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1617, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4717", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4973", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1535, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5229", + "sample document": { + "sample identifier": "Plate1 G14", + "location identifier": "G14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_110", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_366", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_622", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_878", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1134", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1390", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1646", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1902", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2158", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2414", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2670", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2926", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3182", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3438", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3694", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3950", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4206", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4462", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4718", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4974", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5230", + "sample document": { + "sample identifier": "Plate1 G15", + "location identifier": "G15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_111", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_367", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_623", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_879", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1135", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1391", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1647", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1903", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2159", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2415", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2671", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2927", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3183", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3439", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3695", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3951", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4207", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4463", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4719", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4975", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5231", + "sample document": { + "sample identifier": "Plate1 G16", + "location identifier": "G16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_112", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1822, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_368", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1802, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_624", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1789, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_880", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1769, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1136", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1754, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1392", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1777, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1648", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1792, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1904", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1801, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2160", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1793, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2416", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1791, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2672", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1789, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2928", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.177, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3184", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1734, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3440", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1689, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3696", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1641, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3952", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1591, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4208", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1538, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4464", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4720", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4976", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5232", + "sample document": { + "sample identifier": "Plate1 H1", + "location identifier": "H1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.138, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_113", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_369", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_625", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_881", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1137", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1393", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1649", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1905", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2161", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2417", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2673", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2929", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3185", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3441", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3697", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3953", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4209", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4465", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4721", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4977", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5233", + "sample document": { + "sample identifier": "Plate1 H2", + "location identifier": "H2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_114", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1338, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_370", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1331, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_626", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1334, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_882", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1347, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1138", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1357, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1394", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1362, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1650", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1372, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1906", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1377, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2162", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1372, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2418", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.137, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2674", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1371, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2930", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.137, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3186", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1371, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3442", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1362, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3698", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1351, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3954", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1333, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4210", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1322, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4466", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4722", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1288, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4978", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1269, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5234", + "sample document": { + "sample identifier": "Plate1 H3", + "location identifier": "H3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1257, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_115", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_371", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_627", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_883", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1139", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1395", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1651", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1907", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2163", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2419", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2675", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2931", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3187", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3443", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3699", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3955", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4211", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4467", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4723", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4979", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5235", + "sample document": { + "sample identifier": "Plate1 H4", + "location identifier": "H4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_116", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_372", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_628", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_884", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1140", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1396", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1652", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1908", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2164", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2420", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2676", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2932", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3188", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3444", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3700", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3956", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4212", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4468", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4724", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4980", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5236", + "sample document": { + "sample identifier": "Plate1 H5", + "location identifier": "H5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_117", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_373", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0571, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_629", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0569, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_885", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0566, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1141", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0565, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1397", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0564, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1653", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0564, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1909", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0564, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2165", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2421", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2677", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0558, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2933", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0556, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3189", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0557, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3445", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0555, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3701", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0556, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3957", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0553, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4213", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0552, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4469", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0551, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4725", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4981", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0548, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5237", + "sample document": { + "sample identifier": "Plate1 H6", + "location identifier": "H6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0546, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_118", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1754, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_374", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.177, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_630", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1771, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_886", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1779, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1142", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.179, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1398", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1793, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1654", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1804, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1910", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1809, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2166", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1802, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2422", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.179, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2678", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1765, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2934", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3190", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1691, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3446", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1645, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3702", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1603, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3958", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1563, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4214", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1531, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4470", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4726", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4982", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5238", + "sample document": { + "sample identifier": "Plate1 H7", + "location identifier": "H7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_119", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_375", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_631", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0588, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_887", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0589, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1143", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1399", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0586, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1655", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0585, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1911", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0584, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2167", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0583, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2423", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0581, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2679", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0579, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2935", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3191", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3447", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0581, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3703", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0577, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3959", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4215", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0572, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4471", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0575, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4727", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0569, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4983", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5239", + "sample document": { + "sample identifier": "Plate1 H8", + "location identifier": "H8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_120", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_376", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_632", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_888", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1144", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1400", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1656", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1912", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2168", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2424", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2680", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2936", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3192", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3448", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3704", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3960", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4216", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4472", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4728", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4984", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5240", + "sample document": { + "sample identifier": "Plate1 H9", + "location identifier": "H9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_121", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_377", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_633", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_889", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1145", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1401", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1657", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1913", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2169", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2425", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2681", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2937", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3193", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3449", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3705", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3961", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4217", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4473", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4729", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4985", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5241", + "sample document": { + "sample identifier": "Plate1 H10", + "location identifier": "H10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_122", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_378", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_634", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_890", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1146", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1402", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1658", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1914", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2170", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1128, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2426", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2682", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1142, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2938", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3194", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3450", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3706", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3962", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4218", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4474", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4730", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4986", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5242", + "sample document": { + "sample identifier": "Plate1 H11", + "location identifier": "H11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_123", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_379", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_635", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_891", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1147", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1403", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1659", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1915", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2171", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2427", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2683", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2939", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3195", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3451", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3707", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3963", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4219", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4475", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4731", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4987", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5243", + "sample document": { + "sample identifier": "Plate1 H12", + "location identifier": "H12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_124", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.2005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_380", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_636", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_892", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.196, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1148", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1404", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1660", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1917, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1916", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2172", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1884, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2428", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1869, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2684", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1848, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2940", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1812, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3196", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1782, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3452", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1743, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3708", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1711, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3964", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.168, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4220", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1647, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4476", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1612, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4732", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1578, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4988", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1539, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5244", + "sample document": { + "sample identifier": "Plate1 H13", + "location identifier": "H13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_125", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_381", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_637", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_893", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1149", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1405", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1661", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1917", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2173", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2429", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2685", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2941", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3197", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3453", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3709", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3965", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4221", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4477", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4733", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4989", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5245", + "sample document": { + "sample identifier": "Plate1 H14", + "location identifier": "H14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_126", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_382", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_638", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_894", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1150", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1406", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1662", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1918", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2174", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2430", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2686", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2942", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3198", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3454", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3710", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3966", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4222", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4478", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4734", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4990", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5246", + "sample document": { + "sample identifier": "Plate1 H15", + "location identifier": "H15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_127", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_383", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_639", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_895", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1151", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1407", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1663", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1919", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2175", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2431", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2687", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2943", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3199", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3455", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3711", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3967", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4223", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4479", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4735", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4991", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5247", + "sample document": { + "sample identifier": "Plate1 H16", + "location identifier": "H16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_128", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1786, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_384", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1745, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_640", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1758, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_896", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1765, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1152", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1408", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1742, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1664", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1717, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1920", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.17, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2176", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1687, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2432", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1673, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2688", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.166, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2944", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1639, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3200", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1599, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3456", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1551, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3712", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.151, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3968", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4224", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4480", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4736", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1379, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4992", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1348, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5248", + "sample document": { + "sample identifier": "Plate1 I1", + "location identifier": "I1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1314, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_129", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1728, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_385", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1732, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_641", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_897", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1732, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1153", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1737, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1409", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1748, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1665", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1745, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1921", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2177", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1706, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2433", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1679, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2689", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1644, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2945", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1611, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3201", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1591, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3457", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1562, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3713", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1539, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3969", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4225", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4481", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4737", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.141, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4993", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1373, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5249", + "sample document": { + "sample identifier": "Plate1 I2", + "location identifier": "I2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1332, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_130", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_386", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0977, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_642", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0977, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_898", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1154", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1410", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1666", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1922", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2178", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2434", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2690", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2946", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3202", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3458", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3714", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3970", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4226", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4482", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4738", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4994", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5250", + "sample document": { + "sample identifier": "Plate1 I3", + "location identifier": "I3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_131", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_387", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_643", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_899", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1155", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1411", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1667", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1923", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2179", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2435", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2691", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2947", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3203", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3459", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3715", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3971", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4227", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4483", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4739", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4995", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5251", + "sample document": { + "sample identifier": "Plate1 I4", + "location identifier": "I4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_132", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_388", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_644", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_900", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1156", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1412", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1668", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1924", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2180", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2436", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2692", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2948", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3204", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3460", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3716", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3972", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4228", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4484", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4740", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4996", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5252", + "sample document": { + "sample identifier": "Plate1 I5", + "location identifier": "I5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_133", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_389", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_645", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_901", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1157", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1413", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1669", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1925", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2181", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2437", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2693", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2949", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3205", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3461", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3717", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3973", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4229", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4485", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4741", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4997", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5253", + "sample document": { + "sample identifier": "Plate1 I6", + "location identifier": "I6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_134", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1231, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_390", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1244, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_646", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_902", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1251, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1158", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1248, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1414", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1249, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1670", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1926", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1249, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2182", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1254, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2438", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1257, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2694", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1255, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2950", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1255, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3206", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3462", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1244, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3718", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1237, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3974", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1237, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4230", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1237, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4486", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1234, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4742", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1225, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4998", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1221, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5254", + "sample document": { + "sample identifier": "Plate1 I7", + "location identifier": "I7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1207, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_135", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1293, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_391", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_647", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_903", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1159", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1415", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1307, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1671", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1304, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1927", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1307, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2183", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2439", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1308, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2695", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2951", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1297, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3207", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1292, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3463", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1292, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3719", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1287, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3975", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.128, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4231", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1274, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4487", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1269, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4743", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1269, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4999", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1256, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5255", + "sample document": { + "sample identifier": "Plate1 I8", + "location identifier": "I8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1246, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_136", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_392", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_648", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_904", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1160", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1416", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1672", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1928", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2184", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2440", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2696", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2952", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3208", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3464", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3720", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3976", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4232", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4488", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4744", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5000", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5256", + "sample document": { + "sample identifier": "Plate1 I9", + "location identifier": "I9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_137", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_393", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_649", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_905", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0928, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1161", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0919, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1417", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0931, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1673", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1929", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2185", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2441", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2697", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0981, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2953", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3209", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3465", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3721", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3977", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4233", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4489", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4745", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5001", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5257", + "sample document": { + "sample identifier": "Plate1 I10", + "location identifier": "I10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_138", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_394", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_650", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_906", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1162", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1418", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1674", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1930", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2186", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2442", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2698", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2954", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3210", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3466", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3722", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3978", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4234", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4490", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4746", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5002", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5258", + "sample document": { + "sample identifier": "Plate1 I11", + "location identifier": "I11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_139", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_395", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_651", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_907", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1163", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1419", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1675", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1931", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2187", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2443", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2699", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2955", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3211", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3467", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3723", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3979", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4235", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4491", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4747", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5003", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5259", + "sample document": { + "sample identifier": "Plate1 I12", + "location identifier": "I12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_140", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1156, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_396", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_652", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1151, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_908", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1158, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1164", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1420", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1158, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1676", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1932", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2188", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2444", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1192, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2700", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1194, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2956", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1196, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3212", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3468", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1192, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3724", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3980", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1201, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4236", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4492", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4748", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5004", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5260", + "sample document": { + "sample identifier": "Plate1 I13", + "location identifier": "I13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_141", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_397", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_653", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_909", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1165", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1421", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1677", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1113, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1933", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1116, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2189", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2445", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2701", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2957", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3213", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1121, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3469", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3725", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3981", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4237", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1116, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4493", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4749", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5005", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5261", + "sample document": { + "sample identifier": "Plate1 I14", + "location identifier": "I14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_142", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_398", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_654", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_910", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0506, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1166", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1422", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1678", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1934", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2190", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2446", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2702", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0498, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2958", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3214", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3470", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3726", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3982", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4238", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4494", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4750", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5006", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5262", + "sample document": { + "sample identifier": "Plate1 I15", + "location identifier": "I15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_143", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0523, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_399", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0522, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_655", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_911", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0521, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1167", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0519, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1423", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0517, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1679", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0515, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1935", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2191", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0517, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2447", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0515, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2703", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0512, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2959", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0512, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3215", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3471", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3727", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3983", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4239", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4495", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0506, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4751", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5007", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5263", + "sample document": { + "sample identifier": "Plate1 I16", + "location identifier": "I16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_144", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1724, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_400", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1715, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_656", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1727, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_912", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1747, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1168", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1757, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1424", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1736, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1680", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1686, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1936", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1678, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2192", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1696, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2448", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.17, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2704", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1689, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2960", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1664, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3216", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1637, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3472", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3728", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1542, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3984", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4240", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4496", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4752", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1387, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5008", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1363, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5264", + "sample document": { + "sample identifier": "Plate1 J1", + "location identifier": "J1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1336, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_145", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_401", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_657", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_913", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1169", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1425", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1681", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1937", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2193", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2449", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2705", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2961", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3217", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3473", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3729", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3985", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4241", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4497", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4753", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5009", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5265", + "sample document": { + "sample identifier": "Plate1 J2", + "location identifier": "J2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_146", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_402", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_658", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_914", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1170", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1426", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1682", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1938", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2194", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2450", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2706", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2962", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3218", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3474", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3730", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3986", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4242", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4498", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4754", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5010", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5266", + "sample document": { + "sample identifier": "Plate1 J3", + "location identifier": "J3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_147", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_403", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_659", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_915", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1171", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1427", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1683", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1939", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2195", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2451", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2707", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2963", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3219", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3475", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3731", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3987", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4243", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4499", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4755", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5011", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5267", + "sample document": { + "sample identifier": "Plate1 J4", + "location identifier": "J4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_148", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_404", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_660", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_916", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1172", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1428", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1684", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1940", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2196", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2452", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2708", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2964", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3220", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3476", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3732", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3988", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4244", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4500", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4756", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5012", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5268", + "sample document": { + "sample identifier": "Plate1 J5", + "location identifier": "J5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_149", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_405", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_661", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_917", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1173", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1429", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1685", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1941", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2197", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2453", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2709", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2965", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3221", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3477", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3733", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3989", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4245", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4501", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4757", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5013", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5269", + "sample document": { + "sample identifier": "Plate1 J6", + "location identifier": "J6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_150", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1222, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_406", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1231, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_662", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1237, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_918", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1252, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1174", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1430", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1245, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1686", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1246, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1942", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1248, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2198", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1249, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2454", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1251, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2710", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1255, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2966", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1249, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3222", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1241, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3478", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1238, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3734", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1222, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3990", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1223, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4246", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1228, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4502", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1224, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4758", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1209, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5014", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1214, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5270", + "sample document": { + "sample identifier": "Plate1 J7", + "location identifier": "J7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_151", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0605, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_407", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_663", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.06, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_919", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.06, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1175", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0596, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1431", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0596, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1687", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0593, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1943", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2199", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2455", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2711", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2967", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0589, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3223", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0588, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3479", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0586, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3735", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0585, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3991", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0584, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4247", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0583, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4503", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0579, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4759", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5015", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0576, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5271", + "sample document": { + "sample identifier": "Plate1 J8", + "location identifier": "J8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0575, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_152", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_408", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_664", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_920", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1176", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0999, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1432", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1688", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1944", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2200", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2456", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2712", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2968", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3224", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3480", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3736", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3992", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4248", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4504", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4760", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5016", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5272", + "sample document": { + "sample identifier": "Plate1 J9", + "location identifier": "J9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_153", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_409", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_665", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_921", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1177", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1433", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1689", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1945", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2201", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2457", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2713", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2969", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3225", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3481", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3737", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3993", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4249", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4505", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4761", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5017", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5273", + "sample document": { + "sample identifier": "Plate1 J10", + "location identifier": "J10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_154", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_410", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_666", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_922", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1178", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1434", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1690", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1946", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2202", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2458", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2714", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2970", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3226", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3482", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3738", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3994", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4250", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4506", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4762", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5018", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5274", + "sample document": { + "sample identifier": "Plate1 J11", + "location identifier": "J11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_155", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_411", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_667", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_923", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0488, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1179", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1435", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1691", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1947", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2203", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2459", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2715", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2971", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3227", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3483", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3739", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3995", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4251", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4507", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4763", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5019", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5275", + "sample document": { + "sample identifier": "Plate1 J12", + "location identifier": "J12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_156", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1168, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_412", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1171, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_668", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1148, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_924", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1180", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1182, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1436", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1692", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1198, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1948", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1202, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2204", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1191, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2460", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2716", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2972", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3228", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3484", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3740", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1172, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3996", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1175, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4252", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4508", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1171, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4764", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5020", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1165, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5276", + "sample document": { + "sample identifier": "Plate1 J13", + "location identifier": "J13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1162, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_157", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_413", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_669", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_925", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1181", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1437", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1693", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1949", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2205", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2461", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2717", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2973", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3229", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3485", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3741", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3997", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4253", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4509", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4765", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5021", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5277", + "sample document": { + "sample identifier": "Plate1 J14", + "location identifier": "J14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_158", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_414", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_670", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_926", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0486, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1182", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1438", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1694", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1950", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2206", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2462", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2718", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2974", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3230", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0477, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3486", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3742", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3998", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4254", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4510", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4766", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5022", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5278", + "sample document": { + "sample identifier": "Plate1 J15", + "location identifier": "J15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_159", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0511, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_415", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0511, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_671", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_927", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1183", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1439", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1695", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1951", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2207", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0507, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2463", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2719", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2975", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3231", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3487", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3743", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3999", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4255", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4511", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4767", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5023", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5279", + "sample document": { + "sample identifier": "Plate1 J16", + "location identifier": "J16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_160", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1358, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_416", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1357, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_672", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1362, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_928", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1366, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1184", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1377, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1440", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1376, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1696", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1368, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1952", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1365, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2208", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1358, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2464", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.137, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2720", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1368, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2976", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1357, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3232", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.135, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3488", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1342, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3744", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1335, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4000", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1331, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4256", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1313, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4512", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1307, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4768", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1301, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5024", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5280", + "sample document": { + "sample identifier": "Plate1 K1", + "location identifier": "K1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.127, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_161", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_417", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_673", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_929", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1185", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.141, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1441", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1697", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1953", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2209", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2465", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2721", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2977", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3233", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3489", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3745", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4001", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4257", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4513", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1362, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4769", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1345, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5025", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1326, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5281", + "sample document": { + "sample identifier": "Plate1 K2", + "location identifier": "K2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.131, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_162", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_418", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_674", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_930", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1186", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1442", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1698", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1954", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0988, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2210", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0988, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2466", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2722", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2978", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3234", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3490", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3746", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4002", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4258", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4514", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4770", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5026", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5282", + "sample document": { + "sample identifier": "Plate1 K3", + "location identifier": "K3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_163", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_419", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0979, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_675", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_931", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1187", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1443", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1699", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1955", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2211", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2467", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2723", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2979", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0988, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3235", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3491", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3747", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4003", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4259", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4515", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4771", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5027", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5283", + "sample document": { + "sample identifier": "Plate1 K4", + "location identifier": "K4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_164", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_420", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_676", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_932", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1188", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1444", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1700", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1956", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0957, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2212", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2468", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2724", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2980", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3236", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3492", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3748", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4004", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4260", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4516", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4772", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5028", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5284", + "sample document": { + "sample identifier": "Plate1 K5", + "location identifier": "K5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_165", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_421", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_677", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_933", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1189", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1445", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1701", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1957", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2213", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2469", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2725", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2981", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3237", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3493", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3749", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4005", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4261", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4517", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4773", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5029", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5285", + "sample document": { + "sample identifier": "Plate1 K6", + "location identifier": "K6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_166", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.117, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_422", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_678", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1192, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_934", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1212, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1190", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.121, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1446", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1197, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1702", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1958", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2214", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2470", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1186, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2726", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1189, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2982", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3238", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3494", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1181, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3750", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4006", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1164, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4262", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.116, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4518", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4774", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5030", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1139, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5286", + "sample document": { + "sample identifier": "Plate1 K7", + "location identifier": "K7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_167", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1179, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_423", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1189, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_679", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1193, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_935", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1191", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1191, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1447", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1703", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1194, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1959", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2215", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1191, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2471", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1198, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2727", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1198, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2983", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1194, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3239", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3495", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1181, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3751", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1181, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4007", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1175, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4263", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4519", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1164, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4775", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1165, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5031", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5287", + "sample document": { + "sample identifier": "Plate1 K8", + "location identifier": "K8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_168", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_424", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_680", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_936", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1192", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1448", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1704", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1960", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2216", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2472", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2728", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2984", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3240", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3496", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3752", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4008", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4264", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4520", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4776", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5032", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5288", + "sample document": { + "sample identifier": "Plate1 K9", + "location identifier": "K9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_169", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_425", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_681", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_937", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1193", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1449", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1705", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1961", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2217", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2473", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2729", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2985", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3241", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3497", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3753", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4009", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4265", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4521", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4777", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5033", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5289", + "sample document": { + "sample identifier": "Plate1 K10", + "location identifier": "K10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_170", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_426", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_682", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_938", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1194", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1450", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1706", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1962", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2218", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2474", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2730", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2986", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3242", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3498", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3754", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4010", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4266", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4522", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4778", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5034", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5290", + "sample document": { + "sample identifier": "Plate1 K11", + "location identifier": "K11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_171", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_427", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_683", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_939", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1195", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1451", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1707", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1963", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2219", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2475", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2731", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2987", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3243", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3499", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3755", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4011", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4267", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4523", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4779", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5035", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5291", + "sample document": { + "sample identifier": "Plate1 K12", + "location identifier": "K12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_172", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1894, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_428", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_684", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_940", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1956, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1196", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1967, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1452", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1978, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1708", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1964", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2220", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1934, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2476", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1912, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2732", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2988", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1837, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3244", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1804, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3500", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1757, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3756", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1724, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4012", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1691, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4268", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1654, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4524", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1614, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4780", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1578, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5036", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1535, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5292", + "sample document": { + "sample identifier": "Plate1 K13", + "location identifier": "K13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1498, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_173", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_429", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_685", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_941", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1197", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1453", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1709", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1965", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2221", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1902, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2477", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1867, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2733", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2989", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1789, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3245", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1755, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3501", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1713, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3757", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1677, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4013", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1638, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4269", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.16, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4525", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1566, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4781", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1528, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5037", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.149, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5293", + "sample document": { + "sample identifier": "Plate1 K14", + "location identifier": "K14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_174", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_430", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_686", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_942", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1198", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1454", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1710", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1966", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2222", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2478", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2734", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2990", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3246", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3502", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3758", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4014", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4270", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4526", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4782", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5038", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5294", + "sample document": { + "sample identifier": "Plate1 K15", + "location identifier": "K15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_175", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_431", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0506, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_687", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0504, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_943", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0505, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1199", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1455", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1711", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0501, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1967", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2223", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2479", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2735", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2991", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3247", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3503", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0495, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3759", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4015", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4271", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4527", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0492, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4783", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0491, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5039", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5295", + "sample document": { + "sample identifier": "Plate1 K16", + "location identifier": "K16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0494, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_176", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1365, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_432", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1338, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_688", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1337, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_944", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1353, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1200", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1375, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1456", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1712", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1968", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1387, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2224", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2480", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2736", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.139, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2992", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1378, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3248", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1366, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3504", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1353, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3760", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1346, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4016", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1339, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4272", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1315, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4528", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1298, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4784", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1284, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5040", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1268, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5296", + "sample document": { + "sample identifier": "Plate1 L1", + "location identifier": "L1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1255, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_177", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_433", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_689", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_945", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1201", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1457", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1713", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1969", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2225", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2481", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2737", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2993", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3249", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3505", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3761", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4017", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4273", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4529", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4785", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5041", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5297", + "sample document": { + "sample identifier": "Plate1 L2", + "location identifier": "L2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_178", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_434", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_690", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_946", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1202", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1458", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1714", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1970", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2226", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2482", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2738", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2994", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3250", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3506", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3762", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4018", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4274", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4530", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4786", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5042", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5298", + "sample document": { + "sample identifier": "Plate1 L3", + "location identifier": "L3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_179", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_435", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_691", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_947", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1203", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1459", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1715", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1971", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2227", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2483", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2739", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2995", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3251", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3507", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3763", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4019", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4275", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4531", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4787", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5043", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5299", + "sample document": { + "sample identifier": "Plate1 L4", + "location identifier": "L4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_180", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_436", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_692", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_948", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1204", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1460", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1716", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1972", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2228", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2484", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2740", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2996", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3252", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3508", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3764", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4020", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4276", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4532", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4788", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5044", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5300", + "sample document": { + "sample identifier": "Plate1 L5", + "location identifier": "L5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_181", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_437", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_693", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_949", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1205", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1461", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0442, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1717", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1973", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2229", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2485", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2741", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2997", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3253", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3509", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3765", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4021", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4277", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4533", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4789", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5045", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5301", + "sample document": { + "sample identifier": "Plate1 L6", + "location identifier": "L6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_182", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_438", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_694", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_950", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1192, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1206", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1191, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1462", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1191, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1718", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1182, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1974", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1177, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2230", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1175, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2486", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1178, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2742", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2998", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1192, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3254", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1188, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3510", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3766", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1164, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4022", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1156, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4278", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1154, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4534", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1151, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4790", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1142, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5046", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5302", + "sample document": { + "sample identifier": "Plate1 L7", + "location identifier": "L7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1141, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_183", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_439", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0599, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_695", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0597, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_951", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0597, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1207", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0594, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1463", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0594, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1719", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0592, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1975", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0591, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2231", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0589, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2487", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0589, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2743", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2999", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0586, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3255", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0586, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3511", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0585, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3767", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0583, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4023", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0583, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4279", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0582, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4535", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4791", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5047", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0577, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5303", + "sample document": { + "sample identifier": "Plate1 L8", + "location identifier": "L8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0575, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_184", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_440", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_696", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_952", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1208", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1464", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1720", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1976", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2232", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2488", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2744", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3000", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3256", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3512", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3768", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4024", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4280", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4536", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4792", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5048", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5304", + "sample document": { + "sample identifier": "Plate1 L9", + "location identifier": "L9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_185", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_441", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_697", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_953", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1209", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1465", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1721", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1977", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2233", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2489", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2745", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0447, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3001", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3257", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3513", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3769", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4025", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4281", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4537", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4793", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0439, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5049", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5305", + "sample document": { + "sample identifier": "Plate1 L10", + "location identifier": "L10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_186", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_442", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_698", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_954", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1210", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1466", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1722", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1978", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2234", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2490", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2746", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3002", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3258", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3514", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3770", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4026", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4282", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4538", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4794", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5050", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5306", + "sample document": { + "sample identifier": "Plate1 L11", + "location identifier": "L11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_187", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_443", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_699", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_955", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1211", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0459, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1467", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0458, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1723", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1979", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2235", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2491", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0451, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2747", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3003", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3259", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3515", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3771", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4027", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4283", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4539", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4795", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5051", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0438, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5307", + "sample document": { + "sample identifier": "Plate1 L12", + "location identifier": "L12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_188", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1927, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_444", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1928, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_700", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1924, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_956", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1212", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1937, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1468", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1724", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1980", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1882, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2236", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1853, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2492", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1836, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2748", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.181, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3004", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1775, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3260", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1752, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3516", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1713, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3772", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1688, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4028", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1662, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4284", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1629, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4540", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4796", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1556, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5052", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1514, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5308", + "sample document": { + "sample identifier": "Plate1 L13", + "location identifier": "L13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_189", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_445", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_701", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_957", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1213", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1469", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1725", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1981", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2237", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2493", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2749", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0493, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3005", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3261", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3517", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3773", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4029", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4285", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4541", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4797", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5053", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5309", + "sample document": { + "sample identifier": "Plate1 L14", + "location identifier": "L14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_190", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_446", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0483, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_702", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_958", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1214", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0479, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1470", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0478, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1726", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0476, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1982", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2238", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2494", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2750", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3006", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3262", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3518", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0471, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3774", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4030", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4286", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0467, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4542", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4798", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5054", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0464, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5310", + "sample document": { + "sample identifier": "Plate1 L15", + "location identifier": "L15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_191", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0539, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_447", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_703", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0539, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_959", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0539, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1215", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0537, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1471", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0535, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1727", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0535, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1983", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0535, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2239", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0536, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2495", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0534, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2751", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3007", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3263", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0533, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3519", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0528, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3775", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4031", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0527, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4287", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0526, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4543", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0527, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4799", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0526, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5055", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0528, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5311", + "sample document": { + "sample identifier": "Plate1 L16", + "location identifier": "L16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0528, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_192", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_448", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0875, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_704", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0883, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_960", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1216", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0882, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1472", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0879, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1728", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0889, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1984", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2240", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0897, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2496", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0908, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2752", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0919, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3008", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0929, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3264", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3520", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3776", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4032", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0924, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4288", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0913, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4544", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4800", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0916, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5056", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5312", + "sample document": { + "sample identifier": "Plate1 M1", + "location identifier": "M1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0919, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_193", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0927, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_449", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0929, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_705", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_961", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1217", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1473", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1729", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0945, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1985", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2241", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0931, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2497", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0922, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2753", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0917, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3009", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3265", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0945, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3521", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0957, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3777", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4033", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4289", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4545", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4801", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5057", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5313", + "sample document": { + "sample identifier": "Plate1 M2", + "location identifier": "M2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_194", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_450", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.099, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_706", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_962", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1218", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1474", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1730", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1986", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2242", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2498", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2754", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3010", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3266", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3522", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3778", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4034", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4290", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4546", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4802", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5058", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5314", + "sample document": { + "sample identifier": "Plate1 M3", + "location identifier": "M3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_195", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_451", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1027, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_707", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_963", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1219", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1475", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1731", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1987", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2243", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2499", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2755", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3011", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3267", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3523", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3779", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4035", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4291", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4547", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4803", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5059", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5315", + "sample document": { + "sample identifier": "Plate1 M4", + "location identifier": "M4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_196", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0893, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_452", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0895, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_708", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0901, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_964", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0896, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1220", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1476", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0889, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1732", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0881, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1988", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0874, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2244", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0861, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2500", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0871, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2756", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0883, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3012", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0894, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3268", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0903, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3524", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3780", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0904, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4036", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0908, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4292", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0911, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4548", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4804", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0915, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5060", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5316", + "sample document": { + "sample identifier": "Plate1 M5", + "location identifier": "M5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_197", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0894, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_453", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_709", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0891, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_965", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1221", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0878, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1477", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0875, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1733", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0864, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1989", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0861, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2245", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0875, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2501", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0885, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2757", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.09, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3013", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0902, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3269", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0894, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3525", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0889, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3781", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0893, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4037", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0902, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4293", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4549", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4805", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5061", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0895, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5317", + "sample document": { + "sample identifier": "Plate1 M6", + "location identifier": "M6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0899, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_198", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_454", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_710", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_966", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1222", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1478", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1734", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1990", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2246", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2502", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2758", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3014", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3270", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3526", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3782", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4038", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4294", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4550", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4806", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5062", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5318", + "sample document": { + "sample identifier": "Plate1 M7", + "location identifier": "M7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_199", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_455", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_711", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_967", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1223", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1479", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1735", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1991", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2247", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2503", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2759", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3015", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3271", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3527", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3783", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4039", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4295", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4551", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4807", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5063", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5319", + "sample document": { + "sample identifier": "Plate1 M8", + "location identifier": "M8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0972, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_200", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_456", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_712", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_968", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1224", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1480", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1736", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1992", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2248", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2504", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2760", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3016", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3272", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3528", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3784", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4040", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4296", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4552", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4808", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5064", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5320", + "sample document": { + "sample identifier": "Plate1 M9", + "location identifier": "M9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_201", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0914, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_457", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_713", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_969", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0957, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1225", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0985, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1481", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1737", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1993", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0991, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2249", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2505", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0938, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2761", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3017", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3273", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3529", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3785", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0994, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4041", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4297", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4553", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4809", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5065", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5321", + "sample document": { + "sample identifier": "Plate1 M10", + "location identifier": "M10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_202", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0871, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_458", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0886, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_714", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0901, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_970", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0917, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1226", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1482", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1738", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0911, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1994", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2250", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2506", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2762", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0931, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3018", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0926, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3274", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0919, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3530", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0919, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3786", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0915, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4042", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0917, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4298", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0914, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4554", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0912, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4810", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5066", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0906, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5322", + "sample document": { + "sample identifier": "Plate1 M11", + "location identifier": "M11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_203", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0849, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_459", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_715", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0852, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_971", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0873, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1227", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0904, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1483", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1739", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0915, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1995", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0897, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2251", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0898, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2507", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0906, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2763", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3019", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0923, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3275", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3531", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0934, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3787", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0929, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4043", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4299", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4555", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4811", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5067", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0945, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5323", + "sample document": { + "sample identifier": "Plate1 M12", + "location identifier": "M12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_204", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_460", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1526, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_716", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1515, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_972", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1228", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1484", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1740", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1996", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2252", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1503, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2508", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1499, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2764", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.149, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3020", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3276", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3532", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3788", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4044", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1372, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4300", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1334, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4556", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1304, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4812", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1272, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5068", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1244, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5324", + "sample document": { + "sample identifier": "Plate1 M13", + "location identifier": "M13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1211, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_205", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1633, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_461", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1639, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_717", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.164, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_973", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1633, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1229", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1631, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1485", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1642, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1741", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1636, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1997", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.161, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2253", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1581, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2509", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1566, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2765", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1554, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3021", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1534, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3277", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1517, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3533", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3789", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4045", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4301", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4557", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1373, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4813", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5069", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1308, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5325", + "sample document": { + "sample identifier": "Plate1 M14", + "location identifier": "M14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1271, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_206", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_462", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_718", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_974", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1230", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1486", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1742", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1998", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2254", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2510", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2766", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3022", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3278", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3534", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3790", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4046", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4302", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4558", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4814", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5070", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5326", + "sample document": { + "sample identifier": "Plate1 M15", + "location identifier": "M15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_207", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_463", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_719", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_975", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1231", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1487", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1743", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1999", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2255", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2511", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2767", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3023", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3279", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3535", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3791", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4047", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4303", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4559", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4815", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5071", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5327", + "sample document": { + "sample identifier": "Plate1 M16", + "location identifier": "M16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_208", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_464", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.087, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_720", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0871, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_976", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0881, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1232", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0889, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1488", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0897, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1744", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2000", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2256", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2512", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0898, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2768", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3024", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3280", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0897, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3536", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.09, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3792", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4048", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4304", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0906, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4560", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4816", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0915, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5072", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5328", + "sample document": { + "sample identifier": "Plate1 N1", + "location identifier": "N1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0908, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_209", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_465", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_721", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_977", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1233", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1489", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1745", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2001", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2257", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2513", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2769", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0394, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3025", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3281", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3537", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3793", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4049", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4305", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4561", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4817", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0389, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5073", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0388, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5329", + "sample document": { + "sample identifier": "Plate1 N2", + "location identifier": "N2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0388, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_210", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0996, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_466", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_722", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_978", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1234", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1490", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1746", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2002", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2258", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2514", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2770", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3026", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3282", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3538", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3794", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4050", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4306", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4562", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0997, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4818", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5074", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0975, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5330", + "sample document": { + "sample identifier": "Plate1 N3", + "location identifier": "N3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0964, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_211", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_467", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_723", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_979", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1235", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1491", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1747", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2003", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2259", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2515", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2771", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3027", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3283", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3539", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3795", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4051", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4307", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4563", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4819", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5075", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5331", + "sample document": { + "sample identifier": "Plate1 N4", + "location identifier": "N4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_212", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0922, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_468", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_724", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0939, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_980", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1236", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1492", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0928, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1748", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0928, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2004", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0923, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2260", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2516", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2772", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3028", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0912, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3284", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3540", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0925, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3796", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0914, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4052", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4308", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0896, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4564", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4820", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5076", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5332", + "sample document": { + "sample identifier": "Plate1 N5", + "location identifier": "N5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0893, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_213", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_469", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_725", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_981", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1237", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1493", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1749", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2005", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0394, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2261", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2517", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2773", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3029", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3285", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3541", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3797", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0389, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4053", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0389, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4309", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0388, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4565", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0385, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4821", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5077", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5333", + "sample document": { + "sample identifier": "Plate1 N6", + "location identifier": "N6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_214", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_470", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_726", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_982", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1238", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1494", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1750", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2006", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2262", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2518", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2774", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3030", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3286", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3542", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3798", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4054", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4310", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4566", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4822", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5078", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5334", + "sample document": { + "sample identifier": "Plate1 N7", + "location identifier": "N7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_215", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_471", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_727", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_983", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1239", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1495", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1751", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2007", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2263", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2519", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2775", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3031", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3287", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3543", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3799", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4055", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4311", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4567", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4823", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5079", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5335", + "sample document": { + "sample identifier": "Plate1 N8", + "location identifier": "N8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_216", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_472", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_728", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_984", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1240", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1496", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1752", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2008", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2264", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1069, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2520", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2776", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3032", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3288", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3544", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3800", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1074, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4056", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4312", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4568", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4824", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5080", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1088, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5336", + "sample document": { + "sample identifier": "Plate1 N9", + "location identifier": "N9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_217", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_473", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_729", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_985", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1241", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1497", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1753", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2009", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2265", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2521", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2777", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3033", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3289", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3545", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3801", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4057", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0396, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4313", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4569", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0394, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4825", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5081", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5337", + "sample document": { + "sample identifier": "Plate1 N10", + "location identifier": "N10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_218", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0888, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_474", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0893, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_730", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_986", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0904, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1242", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0903, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1498", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0907, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1754", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0914, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2010", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0906, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2266", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2522", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0892, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2778", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0893, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3034", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0897, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3290", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0905, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3546", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0917, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3802", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4058", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4314", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4570", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4826", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0933, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5082", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0924, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5338", + "sample document": { + "sample identifier": "Plate1 N11", + "location identifier": "N11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0918, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_219", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_475", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_731", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_987", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1243", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1499", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1755", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0398, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2011", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0397, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2267", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2523", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2779", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3035", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0392, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3291", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3547", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3803", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0388, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4059", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0389, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4315", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0389, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4571", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0387, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4827", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0386, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5083", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5339", + "sample document": { + "sample identifier": "Plate1 N12", + "location identifier": "N12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_220", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1659, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_476", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1658, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_732", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1654, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_988", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1663, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1244", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1500", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1667, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1756", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1654, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2012", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.163, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2268", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.16, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2524", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1575, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2780", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1551, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3036", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1521, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3292", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3548", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3804", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4060", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4316", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1375, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4572", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1343, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4828", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1306, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5084", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1272, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5340", + "sample document": { + "sample identifier": "Plate1 N13", + "location identifier": "N13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1237, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_221", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_477", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_733", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_989", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1245", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1501", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1757", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2013", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2269", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2525", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2781", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3037", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3293", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3549", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3805", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4061", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4317", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4573", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4829", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5085", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5341", + "sample document": { + "sample identifier": "Plate1 N14", + "location identifier": "N14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_222", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_478", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_734", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_990", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1246", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1502", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1758", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2014", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2270", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2526", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2782", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3038", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3294", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3550", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3806", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4062", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4318", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4574", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4830", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5086", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5342", + "sample document": { + "sample identifier": "Plate1 N15", + "location identifier": "N15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_223", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_479", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_735", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_991", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1247", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1503", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1759", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2015", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2271", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2527", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2783", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3039", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3295", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3551", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3807", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4063", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4319", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4575", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4831", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5087", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0401, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5343", + "sample document": { + "sample identifier": "Plate1 N16", + "location identifier": "N16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0399, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_224", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_480", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_736", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0912, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_992", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0921, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1248", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1504", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0945, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1760", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2016", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0939, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2272", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0941, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2528", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2784", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3040", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0963, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3296", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0963, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3552", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3808", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4064", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0977, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4320", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4576", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4832", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0973, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5088", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0981, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5344", + "sample document": { + "sample identifier": "Plate1 O1", + "location identifier": "O1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0979, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_225", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0909, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_481", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0916, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_737", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0923, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_993", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1249", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0951, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1505", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1761", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2017", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2273", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2529", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0932, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2785", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0935, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3041", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0949, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3297", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3553", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3809", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4065", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4321", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0967, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4577", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0955, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4833", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5089", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0953, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5345", + "sample document": { + "sample identifier": "Plate1 O2", + "location identifier": "O2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_226", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0959, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_482", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_738", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0976, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_994", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1250", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1506", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1762", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2018", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2274", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2530", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2786", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3042", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3298", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3554", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3810", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4066", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4322", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4578", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4834", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5090", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5346", + "sample document": { + "sample identifier": "Plate1 O3", + "location identifier": "O3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_227", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_483", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_739", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_995", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1251", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1507", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1065, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1763", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2019", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2275", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2531", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2787", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3043", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3299", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0998, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3555", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3811", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4067", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4323", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4579", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4835", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1029, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5091", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5347", + "sample document": { + "sample identifier": "Plate1 O4", + "location identifier": "O4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_228", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_484", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_740", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_996", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1014, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1252", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1508", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1764", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2020", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2276", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2532", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2788", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3044", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3300", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3556", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3812", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4068", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1081, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4324", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4580", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4836", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5092", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5348", + "sample document": { + "sample identifier": "Plate1 O5", + "location identifier": "O5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_229", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_485", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_741", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_997", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1253", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1509", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1765", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2021", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2277", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2533", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2789", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3045", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3301", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3557", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3813", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4069", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4325", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4581", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4837", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5093", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5349", + "sample document": { + "sample identifier": "Plate1 O6", + "location identifier": "O6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_230", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0999, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_486", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_742", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_998", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1254", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1510", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1766", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2022", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2278", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2534", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2790", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3046", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3302", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3558", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3814", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4070", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4326", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1013, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4582", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4838", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1008, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5094", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5350", + "sample document": { + "sample identifier": "Plate1 O7", + "location identifier": "O7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0993, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_231", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_487", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_743", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_999", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.111, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1255", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1511", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1767", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1127, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2023", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.114, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2279", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1144, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2535", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1134, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2791", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3047", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1125, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3303", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1119, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3559", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3815", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1112, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4071", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.11, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4327", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4583", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1085, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4839", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5095", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1084, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5351", + "sample document": { + "sample identifier": "Plate1 O8", + "location identifier": "O8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1079, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_232", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_488", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_744", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1000", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1256", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1512", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1768", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2024", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2280", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2536", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2792", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3048", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3304", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3560", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1028, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3816", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4072", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4328", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1021, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4584", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.101, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4840", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5096", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0987, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5352", + "sample document": { + "sample identifier": "Plate1 O9", + "location identifier": "O9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0989, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_233", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_489", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_745", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0982, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1001", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1002, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1257", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1513", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1769", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.102, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2025", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1009, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2281", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2537", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2793", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3049", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1003, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3305", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3561", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1001, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3817", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0992, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4073", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.098, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4329", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0965, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4585", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0962, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4841", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5097", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5353", + "sample document": { + "sample identifier": "Plate1 O10", + "location identifier": "O10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_234", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_490", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_746", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1002", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1258", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1514", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1770", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1017, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2026", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2282", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2538", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2794", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1018, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3050", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3306", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3562", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3818", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4074", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1091, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4330", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4586", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1076, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4842", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1077, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5098", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5354", + "sample document": { + "sample identifier": "Plate1 O11", + "location identifier": "O11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1067, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_235", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_491", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_747", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1004, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1003", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1011, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1259", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1007, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1515", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1771", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0954, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2027", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0971, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2283", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0995, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2539", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1005, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2795", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1006, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3051", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1015, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3307", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3563", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3819", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4075", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4331", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4587", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4843", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5099", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5355", + "sample document": { + "sample identifier": "Plate1 O12", + "location identifier": "O12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_236", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_492", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1192, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_748", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1198, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1004", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1206, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1260", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1203, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1516", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1193, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1772", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1177, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2028", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1161, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2284", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1143, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2540", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1133, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2796", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1131, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3052", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1129, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3308", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1132, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3564", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3820", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4076", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4332", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1174, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4588", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4844", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1158, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5100", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1155, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5356", + "sample document": { + "sample identifier": "Plate1 O13", + "location identifier": "O13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1147, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_237", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1184, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_493", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1195, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_749", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1187, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1005", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1189, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1261", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1185, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1517", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1182, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1773", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.118, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2029", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2285", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1177, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2541", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1173, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2797", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3053", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1169, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3309", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3565", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1167, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3821", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1161, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4077", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1159, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4333", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1144, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4589", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1137, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4845", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1131, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5101", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1115, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5357", + "sample document": { + "sample identifier": "Plate1 O14", + "location identifier": "O14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_238", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_494", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_750", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0474, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1006", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0473, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1262", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0475, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1518", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0472, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1774", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2030", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0469, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2286", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.047, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2542", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2798", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3054", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3310", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3566", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0465, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3822", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0463, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4078", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4334", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4590", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4846", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5102", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5358", + "sample document": { + "sample identifier": "Plate1 O15", + "location identifier": "O15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_239", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_495", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_751", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1007", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1263", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1519", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1775", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2031", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2287", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2543", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2799", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3055", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3311", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3567", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3823", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4079", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4335", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4591", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4847", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5103", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5359", + "sample document": { + "sample identifier": "Plate1 O16", + "location identifier": "O16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_240", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0917, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_496", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0926, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_752", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1008", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1264", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1520", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0942, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1776", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0939, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2032", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0936, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2288", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0943, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2544", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0957, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2800", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3056", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0958, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3312", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0961, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3568", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0968, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3824", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0974, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4080", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0984, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4336", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0969, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4592", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0952, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4848", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5104", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0944, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5360", + "sample document": { + "sample identifier": "Plate1 P1", + "location identifier": "P1", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0947, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_241", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_497", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_753", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1009", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1265", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1521", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1777", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2033", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2289", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2545", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2801", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3057", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3313", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3569", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3825", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4081", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4337", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4593", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4849", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5105", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5361", + "sample document": { + "sample identifier": "Plate1 P2", + "location identifier": "P2", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_242", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1024, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_498", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_754", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1010", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1266", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1522", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1778", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2034", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2290", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2546", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2802", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3058", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3314", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3570", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3826", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4082", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4338", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4594", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4850", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5106", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5362", + "sample document": { + "sample identifier": "Plate1 P3", + "location identifier": "P3", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_243", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_499", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_755", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1011", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1267", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1523", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1779", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2035", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2291", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2547", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2803", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3059", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3315", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3571", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3827", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4083", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4339", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4595", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4851", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5107", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5363", + "sample document": { + "sample identifier": "Plate1 P4", + "location identifier": "P4", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_244", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0946, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_500", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0966, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_756", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0986, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1012", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1268", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1016, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1524", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1780", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1026, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2036", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2292", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2548", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2804", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3060", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3316", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.106, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3572", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3828", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4084", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4340", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4596", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4852", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5108", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5364", + "sample document": { + "sample identifier": "Plate1 P5", + "location identifier": "P5", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_245", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_501", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_757", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1013", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1269", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1525", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1781", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2037", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2293", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2549", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2805", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3061", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3317", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3573", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3829", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4085", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4341", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0409, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4597", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4853", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5109", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0406, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5365", + "sample document": { + "sample identifier": "Plate1 P6", + "location identifier": "P6", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_246", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1031, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_502", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_758", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1014", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1270", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1526", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1782", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2038", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2294", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1103, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2550", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1095, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2806", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3062", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3318", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3574", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3830", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4086", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4342", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4598", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4854", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5110", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5366", + "sample document": { + "sample identifier": "Plate1 P7", + "location identifier": "P7", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1025, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_247", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_503", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_759", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1015", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1271", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1527", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1783", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2039", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2295", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2551", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2807", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3063", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3319", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3575", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3831", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4087", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0414, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4343", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4599", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4855", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5111", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5367", + "sample document": { + "sample identifier": "Plate1 P8", + "location identifier": "P8", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0407, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_248", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_504", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_760", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1016", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1272", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1528", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1784", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2040", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2296", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2552", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2808", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1078, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3064", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3320", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3576", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1043, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3832", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.105, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4088", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4344", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4600", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4856", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1048, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5112", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.104, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5368", + "sample document": { + "sample identifier": "Plate1 P9", + "location identifier": "P9", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_249", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_505", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_761", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1017", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1273", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1529", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1785", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2041", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2297", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2553", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2809", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3065", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3321", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3577", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3833", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4089", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4345", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4601", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4857", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5113", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5369", + "sample document": { + "sample identifier": "Plate1 P10", + "location identifier": "P10", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_250", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_506", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_762", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1018", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1274", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1530", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1033, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1786", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1023, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2042", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1032, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2298", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2554", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2810", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1019, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3066", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1012, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3322", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1022, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3578", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3834", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4090", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.108, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4346", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1075, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4602", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1086, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4858", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5114", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.109, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5370", + "sample document": { + "sample identifier": "Plate1 P11", + "location identifier": "P11", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_251", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_507", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_763", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1019", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1275", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0435, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1531", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1787", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2043", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2299", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0431, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2555", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2811", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0429, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3067", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3323", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0428, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3579", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3835", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4091", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4347", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4603", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4859", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0421, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5115", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5371", + "sample document": { + "sample identifier": "Plate1 P12", + "location identifier": "P12", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_252", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1221, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_508", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1227, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_764", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1233, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1020", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.124, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1276", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1229, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1532", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1223, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1788", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1226, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2044", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1227, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2300", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1226, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2556", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1222, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2812", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1217, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3068", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1219, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3324", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1218, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3580", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1217, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3836", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1217, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4092", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1219, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4348", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1207, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4604", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1199, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4860", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1193, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5116", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1183, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5372", + "sample document": { + "sample identifier": "Plate1 P13", + "location identifier": "P13", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.1168, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_253", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0456, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_509", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_765", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1021", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1277", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1533", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1789", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2045", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.045, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2301", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0449, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2557", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0446, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2813", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0445, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3069", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0444, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3325", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3581", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0443, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3837", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0441, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4093", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.044, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4349", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4605", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0437, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4861", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0434, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5117", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0433, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5373", + "sample document": { + "sample identifier": "Plate1 P14", + "location identifier": "P14", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_254", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_510", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_766", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1022", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1278", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1534", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1790", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2046", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2302", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2558", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2814", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3070", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3326", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0411, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3582", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3838", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4094", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0408, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4350", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4606", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4862", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0403, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5118", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5374", + "sample document": { + "sample identifier": "Plate1 P15", + "location identifier": "P15", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0402, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 525.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_255", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 527.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_511", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 529.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_767", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 531.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1023", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0427, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 533.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1279", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0426, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 535.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1535", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0425, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 537.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1791", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 539.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2047", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.2, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 541.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2303", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0423, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 543.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2559", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 545.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2815", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.042, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 547.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3071", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0418, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 549.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3327", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0419, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 551.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3583", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 553.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3839", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0417, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 555.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4095", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0415, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 557.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4351", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0413, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 559.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4607", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 561.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4863", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 563.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5119", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.0412, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "detector wavelength setting": { + "value": 565.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5375", + "sample document": { + "sample identifier": "Plate1 P16", + "location identifier": "P16", + "well plate identifier": "Plate1" + }, + "absorbance": { + "value": 0.041, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.4, + "unit": "degC" + } + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + } + ], + "data system document": { + "ASM file identifier": "N/A", + "data system instance identifier": "N/A", + "file name": "partial_plate.txt", + "UNC path": "tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt", + "ASM converter name": "allotropy_molecular_devices_softmax_pro", + "ASM converter version": "0.1.92", + "software name": "SoftMax Pro" + }, + "device system document": { + "device identifier": "N/A", + "model number": "N/A" + } + } +} diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt new file mode 100644 index 000000000..06d20c501 --- /dev/null +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt @@ -0,0 +1,379 @@ +##BLOCKS= 1 +Plate: Plate1 1.3 PlateFormat Spectrum Absorbance Raw FALSE 21 525 565 2 1 16 384 1 16 + Temperature(¡C) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 +525 26.2 0.0994 0.0964 0.0967 0.0972 0.095 0.0947 0.0932 0.0936 0.0958 0.0969 0.099 0.1037 0.1302 0.1248 0.1008 0.1006 + 0.091 0.0414 0.0937 0.0415 0.0933 0.042 0.0862 0.0515 0.0961 0.0411 0.0934 0.0404 0.1366 0.0446 0.1003 0.0507 + 0.1515 0.1587 0.1021 0.1004 0.1044 0.1046 0.1129 0.1067 0.1627 0.1738 0.1078 0.1154 0.1091 0.1017 0.1039 0.1412 + 0.1667 0.0442 0.1025 0.0446 0.1067 0.0455 0.1113 0.0463 0.1742 0.045 0.0991 0.0448 0.1058 0.0431 0.104 0.0571 + 0.1718 0.165 0.0989 0.1023 0.1035 0.1027 0.099 0.1118 0.1108 0.1056 0.1026 0.1056 0.1544 0.1571 0.0481 0.0503 + 0.1605 0.0484 0.0976 0.0482 0.1003 0.0493 0.1046 0.0617 0.1094 0.0494 0.1009 0.0497 0.1606 0.0483 0.0489 0.0487 + 0.169 0.1698 0.1292 0.1309 0.1041 0.1033 0.1696 0.1797 0.0906 0.1039 0.1067 0.1063 0.1974 0.1907 0.0473 0.0484 + 0.1822 0.0483 0.1338 0.0472 0.1051 0.0574 0.1754 0.0592 0.1003 0.0489 0.1061 0.0486 0.2005 0.0481 0.0491 0.048 + 0.1786 0.1728 0.0978 0.1029 0.1024 0.104 0.1231 0.1293 0.1009 0.0932 0.1033 0.1072 0.1156 0.1099 0.0507 0.0523 + 0.1724 0.0487 0.0954 0.048 0.1045 0.0479 0.1222 0.0605 0.0984 0.0495 0.1063 0.0493 0.1168 0.0486 0.049 0.0511 + 0.1358 0.1404 0.094 0.0968 0.0964 0.101 0.117 0.1179 0.0969 0.107 0.1059 0.0946 0.1894 0.1937 0.0457 0.0505 + 0.1365 0.0471 0.0989 0.0456 0.0985 0.0447 0.1184 0.0601 0.1055 0.0461 0.1012 0.0467 0.1927 0.0473 0.0485 0.0539 + 0.086 0.0927 0.0989 0.1021 0.0893 0.0894 0.1047 0.1054 0.104 0.0914 0.0871 0.0849 0.1509 0.1633 0.0414 0.0426 + 0.086 0.0405 0.0996 0.0411 0.0922 0.0403 0.1052 0.0412 0.1046 0.0412 0.0888 0.0408 0.1659 0.0426 0.042 0.0421 + 0.0909 0.0909 0.0959 0.1012 0.1003 0.1034 0.0999 0.1096 0.1053 0.0961 0.1046 0.1 0.1183 0.1184 0.0475 0.0423 + 0.0917 0.0433 0.1024 0.0436 0.0946 0.0419 0.1031 0.0425 0.1093 0.0437 0.1045 0.0435 0.1221 0.0456 0.042 0.0426 + +527 26.2 0.1013 0.0979 0.0968 0.0986 0.0953 0.095 0.0932 0.0941 0.0969 0.0974 0.0993 0.1045 0.1314 0.1255 0.1009 0.1008 + 0.0927 0.0412 0.0938 0.0413 0.0946 0.0419 0.0863 0.0514 0.0971 0.0409 0.0947 0.0403 0.138 0.0445 0.1009 0.0507 + 0.1567 0.1588 0.1027 0.1013 0.1055 0.1055 0.1125 0.1065 0.1642 0.1754 0.1083 0.1155 0.1111 0.1027 0.1044 0.1422 + 0.164 0.0439 0.1036 0.0444 0.1077 0.0453 0.1123 0.046 0.1773 0.0447 0.0993 0.0447 0.1055 0.0429 0.1048 0.0571 + 0.174 0.1659 0.0999 0.1029 0.1046 0.1032 0.0996 0.1118 0.1119 0.1066 0.1042 0.1065 0.1559 0.1568 0.0479 0.0503 + 0.1602 0.048 0.0988 0.048 0.101 0.049 0.1061 0.0615 0.1106 0.0492 0.1013 0.0495 0.162 0.0481 0.0486 0.0486 + 0.1721 0.169 0.1297 0.131 0.1045 0.1036 0.1706 0.1807 0.0913 0.1052 0.1077 0.1079 0.197 0.1924 0.0471 0.0482 + 0.1802 0.048 0.1331 0.047 0.1066 0.0571 0.177 0.0592 0.1016 0.0487 0.1071 0.0483 0.1992 0.0478 0.0488 0.0478 + 0.1745 0.1732 0.0977 0.1035 0.1027 0.1053 0.1244 0.1305 0.1022 0.0937 0.1038 0.1075 0.1148 0.1103 0.0507 0.0522 + 0.1715 0.0484 0.0969 0.0478 0.1057 0.0477 0.1231 0.0601 0.0993 0.0493 0.1072 0.049 0.1171 0.0485 0.0487 0.0511 + 0.1357 0.1391 0.0946 0.0979 0.0964 0.1016 0.118 0.1189 0.0982 0.1073 0.1062 0.0969 0.1925 0.1944 0.0456 0.0506 + 0.1338 0.047 0.0997 0.0455 0.0982 0.0445 0.1187 0.0599 0.1059 0.0459 0.1021 0.0464 0.1928 0.0472 0.0483 0.054 + 0.0875 0.0929 0.099 0.1027 0.0895 0.0899 0.1054 0.1057 0.1053 0.092 0.0886 0.085 0.1526 0.1639 0.0413 0.0424 + 0.087 0.0403 0.1005 0.041 0.0933 0.0401 0.1049 0.041 0.105 0.041 0.0893 0.0405 0.1658 0.0425 0.0418 0.042 + 0.091 0.0916 0.096 0.1028 0.1001 0.1056 0.101 0.1103 0.1063 0.0971 0.103 0.1011 0.1192 0.1195 0.0472 0.0423 + 0.0926 0.0431 0.1016 0.0435 0.0966 0.0418 0.1045 0.0424 0.1082 0.0435 0.1038 0.0434 0.1227 0.0454 0.0418 0.0426 + +529 26.2 0.101 0.0987 0.0958 0.098 0.0962 0.0949 0.0941 0.0953 0.0972 0.0991 0.0989 0.1079 0.1325 0.1258 0.1011 0.1005 + 0.0936 0.0411 0.0964 0.0412 0.0955 0.0417 0.0869 0.0512 0.0978 0.0409 0.0943 0.0401 0.1385 0.0443 0.1015 0.0506 + 0.1574 0.1589 0.1033 0.1018 0.1064 0.1066 0.1126 0.1062 0.1655 0.1758 0.1086 0.1155 0.1115 0.1022 0.1049 0.1432 + 0.1621 0.0437 0.1036 0.0442 0.1084 0.045 0.112 0.0459 0.1794 0.0445 0.1009 0.0445 0.1066 0.0428 0.105 0.0569 + 0.1773 0.1662 0.1009 0.1024 0.1051 0.1026 0.1005 0.1112 0.1124 0.1061 0.1049 0.1083 0.1566 0.1565 0.0477 0.0501 + 0.1594 0.0478 0.0991 0.0477 0.1008 0.0488 0.1085 0.0613 0.1115 0.0491 0.1015 0.0493 0.1616 0.0479 0.0484 0.0483 + 0.1699 0.1704 0.1304 0.1326 0.1043 0.105 0.1707 0.1813 0.0913 0.1053 0.1082 0.1086 0.1976 0.1952 0.0469 0.048 + 0.1789 0.0477 0.1334 0.0467 0.1072 0.0569 0.1771 0.0588 0.1024 0.0483 0.1081 0.0481 0.1974 0.0476 0.0486 0.0476 + 0.1758 0.173 0.0977 0.1035 0.1027 0.1056 0.125 0.1305 0.1031 0.0933 0.1051 0.1079 0.1151 0.1111 0.0503 0.052 + 0.1727 0.0481 0.0973 0.0476 0.1056 0.0474 0.1237 0.06 0.0996 0.049 0.1086 0.0487 0.1148 0.0481 0.0486 0.0509 + 0.1362 0.1393 0.0955 0.0985 0.0962 0.1024 0.1192 0.1193 0.0995 0.1075 0.1048 0.0985 0.1933 0.1965 0.0454 0.0504 + 0.1337 0.0468 0.1006 0.0452 0.0984 0.0444 0.1184 0.0597 0.1054 0.0457 0.1025 0.0462 0.1924 0.0469 0.0481 0.0539 + 0.0883 0.0932 0.0992 0.1037 0.0901 0.0891 0.1065 0.1058 0.1063 0.0932 0.0901 0.0852 0.1515 0.164 0.041 0.0422 + 0.0871 0.04 0.1009 0.0407 0.0939 0.0398 0.1049 0.0408 0.106 0.0408 0.0892 0.0403 0.1654 0.0422 0.0415 0.0416 + 0.0912 0.0923 0.0976 0.1038 0.1002 0.1068 0.1025 0.1102 0.106 0.0982 0.1019 0.1004 0.1198 0.1187 0.0474 0.0423 + 0.0936 0.0432 0.1026 0.0434 0.0986 0.0418 0.1059 0.0424 0.1061 0.0436 0.1036 0.0434 0.1233 0.0454 0.0417 0.0426 + +531 26.2 0.1016 0.0975 0.0949 0.0971 0.0951 0.0964 0.094 0.0946 0.0976 0.0997 0.0986 0.1088 0.1327 0.1256 0.1017 0.0998 + 0.0952 0.041 0.0982 0.0411 0.0962 0.0416 0.0894 0.0511 0.0984 0.0407 0.094 0.04 0.1383 0.0443 0.1007 0.0505 + 0.157 0.1601 0.1049 0.1021 0.1084 0.108 0.1147 0.1077 0.1659 0.1766 0.1082 0.1144 0.11 0.1031 0.1052 0.1444 + 0.1609 0.0439 0.1029 0.0444 0.1088 0.0452 0.1135 0.046 0.1795 0.0447 0.102 0.0446 0.1071 0.0429 0.1055 0.057 + 0.179 0.1664 0.1015 0.1024 0.1054 0.1034 0.1008 0.1126 0.1119 0.1054 0.1051 0.1108 0.1579 0.1586 0.0477 0.0503 + 0.1621 0.0478 0.099 0.0479 0.1016 0.0489 0.1097 0.0612 0.1107 0.0492 0.1021 0.0494 0.162 0.0479 0.0486 0.0485 + 0.1705 0.175 0.1321 0.1346 0.1046 0.1075 0.171 0.1823 0.0922 0.1046 0.1091 0.1091 0.1995 0.1956 0.0469 0.048 + 0.1769 0.0476 0.1347 0.0467 0.1076 0.0566 0.1779 0.0589 0.1039 0.0483 0.1096 0.048 0.196 0.0476 0.0486 0.0475 + 0.1765 0.1732 0.0984 0.1034 0.1023 0.1047 0.1251 0.1305 0.1043 0.0928 0.1074 0.1089 0.1158 0.1101 0.0506 0.0521 + 0.1747 0.048 0.0974 0.0475 0.1067 0.0473 0.1252 0.06 0.1003 0.0489 0.1095 0.0488 0.1172 0.0482 0.0486 0.0509 + 0.1366 0.1399 0.0964 0.0993 0.0962 0.1029 0.1212 0.1195 0.1005 0.1084 0.1042 0.1001 0.1956 0.1974 0.0454 0.0505 + 0.1353 0.0466 0.1015 0.0451 0.0984 0.0443 0.1192 0.0597 0.1048 0.0456 0.103 0.0461 0.1942 0.047 0.048 0.0539 + 0.089 0.0944 0.0997 0.1047 0.0896 0.088 0.1077 0.1061 0.105 0.0957 0.0917 0.0873 0.1482 0.1633 0.0411 0.0422 + 0.0881 0.0399 0.1014 0.0407 0.0932 0.0399 0.1047 0.0408 0.106 0.0408 0.0904 0.0402 0.1663 0.0423 0.0416 0.0416 + 0.0921 0.0944 0.0998 0.1047 0.1014 0.1073 0.1045 0.111 0.1052 0.1002 0.1019 0.1011 0.1206 0.1189 0.0473 0.0424 + 0.0942 0.0434 0.1041 0.0437 0.1 0.042 0.1072 0.0426 0.1051 0.0437 0.1032 0.0436 0.124 0.0455 0.042 0.0427 + +533 26.2 0.1025 0.0962 0.0935 0.0967 0.0942 0.0978 0.0943 0.0952 0.0974 0.101 0.0989 0.1099 0.1325 0.1259 0.1029 0.0991 + 0.0946 0.0409 0.097 0.0411 0.0965 0.0415 0.0921 0.0509 0.1 0.0407 0.0942 0.0399 0.1391 0.044 0.1005 0.0504 + 0.1543 0.1595 0.1069 0.102 0.1092 0.1078 0.1152 0.1089 0.167 0.1771 0.109 0.1163 0.11 0.1039 0.1053 0.1449 + 0.1615 0.0438 0.1038 0.0443 0.1097 0.0451 0.1155 0.0459 0.179 0.0446 0.1028 0.0446 0.1063 0.0429 0.105 0.057 + 0.1799 0.1669 0.1031 0.1017 0.1066 0.1048 0.1002 0.1145 0.1124 0.1068 0.1052 0.1109 0.1574 0.1612 0.0478 0.0504 + 0.162 0.0479 0.0997 0.0479 0.103 0.0488 0.1097 0.0613 0.1107 0.0493 0.1027 0.0494 0.1633 0.0481 0.0486 0.0484 + 0.1718 0.1752 0.1315 0.134 0.1044 0.1073 0.1712 0.1829 0.0927 0.1039 0.1095 0.1097 0.2004 0.1953 0.0468 0.0479 + 0.1754 0.0474 0.1357 0.0466 0.1084 0.0565 0.179 0.0587 0.1057 0.0481 0.1107 0.0478 0.1944 0.0475 0.0485 0.0474 + 0.176 0.1737 0.0992 0.1042 0.1017 0.1048 0.1248 0.1305 0.1026 0.0919 0.1087 0.1095 0.1154 0.1098 0.0501 0.0519 + 0.1757 0.0477 0.0982 0.0473 0.1072 0.0471 0.125 0.0596 0.0999 0.0487 0.1094 0.0484 0.1182 0.048 0.0483 0.0507 + 0.1377 0.141 0.097 0.0994 0.0953 0.1038 0.121 0.1191 0.1027 0.1083 0.1045 0.1007 0.1967 0.1975 0.0452 0.0503 + 0.1375 0.0464 0.1007 0.0449 0.0987 0.0442 0.1191 0.0594 0.1042 0.0454 0.1034 0.0459 0.1937 0.0468 0.0479 0.0537 + 0.0882 0.095 0.1004 0.1067 0.0899 0.0878 0.1084 0.1059 0.1048 0.0985 0.0921 0.0904 0.1469 0.1631 0.0409 0.042 + 0.0889 0.0399 0.1008 0.0406 0.0925 0.0397 0.1045 0.0406 0.1071 0.0406 0.0903 0.04 0.167 0.0421 0.0414 0.0414 + 0.0935 0.0951 0.1014 0.105 0.1023 0.107 0.1064 0.1118 0.1062 0.1031 0.1025 0.1007 0.1203 0.1185 0.0475 0.0424 + 0.094 0.0433 0.106 0.0437 0.1016 0.042 0.109 0.0424 0.1066 0.0437 0.1032 0.0435 0.1229 0.0455 0.0419 0.0426 + +535 26.2 0.102 0.0947 0.0915 0.0966 0.0949 0.0981 0.0942 0.095 0.0971 0.1007 0.1 0.1106 0.1318 0.1263 0.1034 0.0996 + 0.0949 0.0408 0.0963 0.0409 0.0965 0.0414 0.0914 0.0507 0.1002 0.0404 0.0946 0.0397 0.1388 0.0439 0.1016 0.05 + 0.1571 0.159 0.1082 0.104 0.1092 0.1078 0.1153 0.1093 0.1679 0.1775 0.111 0.1184 0.11 0.1041 0.1054 0.1453 + 0.1641 0.0437 0.1051 0.0442 0.11 0.0449 0.1163 0.0456 0.1772 0.0444 0.1034 0.0444 0.1063 0.0427 0.1047 0.0567 + 0.1791 0.1664 0.1036 0.1016 0.1073 0.1053 0.101 0.1145 0.1113 0.1073 0.1058 0.1106 0.1596 0.1617 0.0476 0.05 + 0.1635 0.0477 0.1009 0.0478 0.1031 0.0487 0.109 0.0611 0.1102 0.0491 0.1035 0.0493 0.1642 0.0479 0.0484 0.0483 + 0.1694 0.1731 0.1324 0.1326 0.1049 0.1067 0.1713 0.1828 0.0935 0.1048 0.1088 0.1097 0.1999 0.1937 0.0467 0.0477 + 0.1777 0.0473 0.1362 0.0465 0.1087 0.0564 0.1793 0.0586 0.1067 0.048 0.1106 0.0477 0.1935 0.0475 0.0484 0.0473 + 0.1742 0.1748 0.1005 0.1048 0.102 0.105 0.1249 0.1307 0.101 0.0931 0.1099 0.1108 0.1158 0.1106 0.0501 0.0517 + 0.1736 0.0476 0.099 0.0472 0.1084 0.047 0.1245 0.0596 0.0998 0.0485 0.1078 0.0484 0.1187 0.0479 0.0482 0.0505 + 0.1376 0.1422 0.0975 0.0993 0.0947 0.1049 0.1197 0.1188 0.1047 0.1077 0.1059 0.1004 0.1978 0.1972 0.0451 0.0501 + 0.1386 0.0463 0.0996 0.0447 0.0994 0.0442 0.1191 0.0594 0.1038 0.0453 0.103 0.0458 0.1935 0.0467 0.0478 0.0535 + 0.0879 0.0949 0.1009 0.1065 0.0889 0.0875 0.1085 0.1067 0.1026 0.1008 0.0918 0.0921 0.147 0.1642 0.0409 0.0419 + 0.0897 0.0397 0.1003 0.0405 0.0928 0.0396 0.1051 0.0405 0.1081 0.0404 0.0907 0.0399 0.1667 0.0421 0.0414 0.0414 + 0.0945 0.0954 0.1025 0.1065 0.1043 0.1061 0.1096 0.1124 0.1064 0.1031 0.1026 0.0986 0.1193 0.1182 0.0472 0.0422 + 0.0942 0.0433 0.1072 0.0435 0.1023 0.0418 0.1103 0.0423 0.1056 0.0435 0.1033 0.0434 0.1223 0.0452 0.0418 0.0425 + +537 26.2 0.1027 0.0953 0.0905 0.0972 0.0976 0.097 0.0951 0.0949 0.0964 0.0988 0.1005 0.1099 0.1312 0.125 0.1055 0.0998 + 0.0945 0.0408 0.0965 0.0409 0.0964 0.0413 0.0908 0.0507 0.1005 0.0404 0.0943 0.0397 0.1385 0.0439 0.1012 0.05 + 0.1601 0.1599 0.1084 0.1062 0.1095 0.1073 0.1154 0.1092 0.1675 0.1773 0.1123 0.1195 0.1097 0.1052 0.1056 0.1449 + 0.1658 0.0437 0.107 0.0442 0.1104 0.0449 0.1171 0.0456 0.1763 0.0445 0.1046 0.0444 0.1063 0.0427 0.1039 0.0568 + 0.1781 0.1654 0.1045 0.103 0.1072 0.1063 0.1014 0.1142 0.1118 0.1086 0.1053 0.1111 0.1598 0.1612 0.0476 0.0499 + 0.1649 0.0476 0.1009 0.0477 0.1037 0.0486 0.1093 0.061 0.1115 0.0491 0.104 0.0492 0.1632 0.0479 0.0484 0.0482 + 0.1659 0.1697 0.1329 0.1314 0.1064 0.1054 0.1711 0.183 0.0932 0.1056 0.109 0.1107 0.1975 0.1916 0.0466 0.0476 + 0.1792 0.0471 0.1372 0.0464 0.1088 0.0564 0.1804 0.0585 0.1068 0.0479 0.1104 0.0476 0.1917 0.0473 0.0483 0.0471 + 0.1717 0.1745 0.102 0.1051 0.1018 0.1057 0.125 0.1304 0.1002 0.0949 0.1113 0.1104 0.1178 0.1113 0.0501 0.0515 + 0.1686 0.0473 0.1002 0.0471 0.1086 0.0467 0.1246 0.0593 0.1001 0.0483 0.1075 0.0482 0.1198 0.0477 0.0481 0.0504 + 0.1368 0.1431 0.098 0.0996 0.0949 0.1049 0.1187 0.1194 0.1059 0.1078 0.1066 0.1004 0.1969 0.1954 0.0451 0.0501 + 0.1384 0.0461 0.0994 0.0446 0.1001 0.044 0.1182 0.0592 0.1028 0.0451 0.1016 0.0455 0.1907 0.0465 0.0476 0.0535 + 0.0889 0.0945 0.1016 0.1042 0.0881 0.0864 0.1076 0.1065 0.1036 0.1014 0.0911 0.0915 0.1485 0.1636 0.0408 0.0418 + 0.0905 0.0396 0.1005 0.0404 0.0928 0.0395 0.1054 0.0403 0.1086 0.0403 0.0914 0.0398 0.1654 0.0419 0.0413 0.0412 + 0.0949 0.0952 0.1022 0.1062 0.1055 0.1061 0.1103 0.1127 0.1048 0.102 0.1017 0.0954 0.1177 0.118 0.047 0.0421 + 0.0939 0.0431 0.1057 0.0434 0.1026 0.0417 0.1103 0.0422 0.1044 0.0434 0.1023 0.0434 0.1226 0.0452 0.0417 0.0424 + +539 26.2 0.1027 0.0954 0.0889 0.0968 0.0993 0.0968 0.097 0.0952 0.0964 0.097 0.1003 0.111 0.1317 0.1248 0.107 0.0991 + 0.0951 0.0406 0.0942 0.0408 0.0969 0.0412 0.0905 0.0505 0.0998 0.0404 0.0943 0.0395 0.1386 0.0438 0.1003 0.0499 + 0.1608 0.1595 0.1079 0.1066 0.1089 0.108 0.1156 0.1101 0.1665 0.1766 0.1134 0.1204 0.1081 0.1065 0.1055 0.1431 + 0.1662 0.0437 0.1084 0.0442 0.1109 0.0448 0.1173 0.0456 0.1758 0.0444 0.1072 0.0443 0.1073 0.0427 0.1028 0.0567 + 0.1771 0.1634 0.1034 0.1042 0.1057 0.1063 0.1033 0.1159 0.1127 0.1085 0.1043 0.1125 0.1587 0.16 0.0474 0.0499 + 0.1652 0.0475 0.1011 0.0477 0.1042 0.0484 0.1104 0.0609 0.1103 0.049 0.1035 0.0491 0.1618 0.0478 0.0483 0.0481 + 0.1648 0.1673 0.1325 0.1312 0.1079 0.1059 0.1712 0.1828 0.0926 0.1055 0.1085 0.1116 0.1949 0.1899 0.0466 0.0475 + 0.1801 0.047 0.1377 0.0464 0.1095 0.0564 0.1809 0.0584 0.1061 0.0478 0.1118 0.0475 0.1909 0.0473 0.0483 0.047 + 0.17 0.173 0.1032 0.1045 0.102 0.1068 0.1249 0.1307 0.1 0.096 0.1115 0.1082 0.1184 0.1116 0.05 0.0514 + 0.1678 0.0472 0.1013 0.047 0.1088 0.0466 0.1248 0.0592 0.1001 0.0481 0.1066 0.0481 0.1202 0.0477 0.048 0.0504 + 0.1365 0.1443 0.0988 0.1013 0.0957 0.1044 0.1184 0.119 0.1061 0.1077 0.1075 0.0998 0.1961 0.1932 0.045 0.05 + 0.1387 0.0459 0.0997 0.0445 0.1013 0.0439 0.1177 0.0591 0.1025 0.045 0.1017 0.0454 0.1882 0.0465 0.0475 0.0535 + 0.0892 0.094 0.1019 0.1025 0.0874 0.0861 0.1067 0.1054 0.1048 0.0991 0.0907 0.0897 0.1502 0.161 0.0407 0.0417 + 0.0905 0.0396 0.1006 0.0404 0.0923 0.0394 0.106 0.0402 0.1074 0.0402 0.0906 0.0397 0.163 0.0418 0.0412 0.0411 + 0.0939 0.0952 0.1017 0.1055 0.1046 0.1045 0.1083 0.114 0.1036 0.1009 0.1012 0.0971 0.1161 0.1176 0.0469 0.042 + 0.0936 0.0431 0.1042 0.0434 0.1043 0.0417 0.1104 0.0422 0.1053 0.0435 0.1032 0.0432 0.1227 0.045 0.0416 0.0423 + +541 26.3 0.1026 0.0959 0.0901 0.0965 0.0995 0.098 0.0973 0.0965 0.0966 0.0969 0.0999 0.1124 0.1306 0.126 0.1077 0.0992 + 0.0954 0.0406 0.0928 0.0406 0.0966 0.041 0.0911 0.0505 0.0989 0.0403 0.0943 0.0395 0.1384 0.0436 0.1009 0.05 + 0.1597 0.1586 0.1072 0.1062 0.1079 0.1086 0.1167 0.1106 0.165 0.1754 0.114 0.1218 0.1098 0.1066 0.1052 0.1405 + 0.1664 0.0437 0.1092 0.0441 0.1109 0.0447 0.1178 0.0454 0.1732 0.0443 0.1083 0.0443 0.1078 0.0426 0.1015 0.0567 + 0.1761 0.1614 0.1034 0.1052 0.1057 0.1069 0.1039 0.1177 0.1138 0.1102 0.1049 0.113 0.157 0.1583 0.0474 0.05 + 0.1645 0.0475 0.1011 0.0476 0.1047 0.0483 0.1118 0.0609 0.1088 0.0488 0.1038 0.049 0.1591 0.0478 0.0482 0.048 + 0.1646 0.1667 0.132 0.1317 0.1091 0.1067 0.1706 0.1824 0.092 0.1059 0.1091 0.1115 0.1921 0.1886 0.0464 0.0473 + 0.1793 0.0468 0.1372 0.0461 0.1097 0.0559 0.1802 0.0583 0.1057 0.0474 0.1128 0.0472 0.1884 0.0471 0.048 0.0468 + 0.1687 0.1706 0.1034 0.1039 0.1023 0.107 0.1254 0.1311 0.1008 0.097 0.1103 0.1072 0.1187 0.1111 0.0499 0.0517 + 0.1696 0.0472 0.102 0.0471 0.1091 0.0467 0.1249 0.0592 0.1007 0.0482 0.1065 0.0481 0.1191 0.0477 0.048 0.0507 + 0.1358 0.1464 0.0988 0.1019 0.0972 0.1039 0.1188 0.1191 0.106 0.1064 0.1077 0.0992 0.1934 0.1902 0.0448 0.0502 + 0.1393 0.0456 0.0998 0.0443 0.1023 0.0437 0.1175 0.0589 0.1025 0.0449 0.1021 0.0452 0.1853 0.0464 0.0474 0.0536 + 0.0897 0.0931 0.1021 0.1017 0.0861 0.0875 0.1067 0.1045 0.1043 0.0953 0.0907 0.0898 0.1503 0.1581 0.0405 0.0416 + 0.0892 0.0395 0.1009 0.0402 0.091 0.0392 0.1054 0.0401 0.1069 0.0401 0.0892 0.0395 0.16 0.0417 0.0409 0.0409 + 0.0941 0.0943 0.1024 0.1045 0.1055 0.1035 0.1071 0.1144 0.1025 0.1012 0.1018 0.0995 0.1143 0.1177 0.047 0.042 + 0.0943 0.043 0.105 0.0432 0.1061 0.0417 0.1103 0.0421 0.1057 0.0433 0.1046 0.0431 0.1226 0.0449 0.0415 0.0423 + +543 26.3 0.1028 0.0956 0.091 0.0955 0.0993 0.0985 0.0975 0.097 0.0956 0.0973 0.0993 0.1133 0.1301 0.1267 0.1069 0.0995 + 0.095 0.0403 0.0936 0.0405 0.0961 0.0409 0.091 0.0502 0.0996 0.0401 0.0954 0.0393 0.1376 0.0434 0.1006 0.0497 + 0.1601 0.1585 0.106 0.1062 0.1077 0.1078 0.1169 0.1107 0.1636 0.174 0.1126 0.1215 0.1104 0.1073 0.1049 0.1386 + 0.166 0.0432 0.109 0.0438 0.1104 0.0445 0.1176 0.0452 0.1727 0.044 0.1091 0.0441 0.109 0.0424 0.1006 0.0564 + 0.1766 0.161 0.1044 0.1062 0.1064 0.1083 0.1043 0.1185 0.1152 0.1113 0.1067 0.1136 0.1563 0.1573 0.0477 0.0503 + 0.1638 0.0476 0.1019 0.0479 0.1052 0.0486 0.1129 0.0611 0.1102 0.0492 0.1051 0.0493 0.1579 0.048 0.0484 0.0484 + 0.1644 0.1683 0.1324 0.1327 0.1098 0.1075 0.1695 0.1818 0.0921 0.1061 0.111 0.1119 0.1906 0.1877 0.0463 0.0471 + 0.1791 0.0465 0.137 0.046 0.1104 0.0559 0.179 0.0581 0.106 0.0473 0.1129 0.0471 0.1869 0.0469 0.0479 0.0466 + 0.1673 0.1679 0.1036 0.1037 0.1026 0.1058 0.1257 0.1308 0.1011 0.0971 0.1089 0.1074 0.1192 0.1114 0.0499 0.0515 + 0.17 0.047 0.1025 0.047 0.1095 0.0466 0.1251 0.0592 0.1003 0.0481 0.1074 0.0481 0.1188 0.0476 0.048 0.0504 + 0.137 0.1469 0.0994 0.1013 0.097 0.1042 0.1186 0.1198 0.1057 0.1052 0.1078 0.0996 0.1912 0.1867 0.0448 0.0499 + 0.1395 0.0455 0.0993 0.0442 0.1029 0.0436 0.1178 0.0589 0.1031 0.0447 0.1021 0.0451 0.1836 0.0465 0.0473 0.0534 + 0.0908 0.0922 0.1017 0.102 0.0871 0.0885 0.1084 0.1047 0.1058 0.0938 0.0925 0.0906 0.1499 0.1566 0.0404 0.0415 + 0.0898 0.0393 0.1015 0.0401 0.0907 0.0392 0.1052 0.04 0.1091 0.0399 0.0892 0.0393 0.1575 0.0416 0.0409 0.0409 + 0.095 0.0932 0.103 0.1036 0.1061 0.1042 0.1063 0.1134 0.1036 0.1015 0.1015 0.1005 0.1133 0.1173 0.0466 0.0416 + 0.0957 0.0427 0.1051 0.043 0.1042 0.0413 0.1095 0.0418 0.1082 0.0432 0.1038 0.0429 0.1222 0.0446 0.0412 0.042 + +545 26.3 0.1028 0.0967 0.0919 0.0955 0.0994 0.098 0.0978 0.0972 0.0952 0.0977 0.0982 0.1129 0.1298 0.1262 0.1063 0.0998 + 0.0942 0.0403 0.0957 0.0404 0.0965 0.0409 0.0913 0.0501 0.0988 0.04 0.0964 0.0392 0.1367 0.0434 0.1008 0.0495 + 0.1602 0.158 0.1049 0.1058 0.1077 0.1072 0.1176 0.1112 0.1618 0.1717 0.1135 0.121 0.1108 0.106 0.1042 0.1362 + 0.1655 0.0434 0.1083 0.0438 0.1095 0.0444 0.1168 0.0452 0.1706 0.044 0.1105 0.044 0.1096 0.0423 0.0998 0.0562 + 0.1758 0.1601 0.1048 0.1062 0.1073 0.1091 0.1049 0.1185 0.1159 0.1125 0.1079 0.1138 0.1549 0.1556 0.0476 0.05 + 0.1626 0.0476 0.1018 0.0479 0.1055 0.0486 0.1131 0.0609 0.1107 0.0492 0.1054 0.0493 0.1561 0.048 0.0484 0.0483 + 0.1637 0.1684 0.1327 0.1336 0.1098 0.1079 0.1678 0.18 0.0927 0.1058 0.1128 0.1119 0.189 0.1862 0.0463 0.0471 + 0.1789 0.0465 0.1371 0.0459 0.1103 0.0558 0.1765 0.0579 0.1072 0.0473 0.1142 0.047 0.1848 0.047 0.0479 0.0465 + 0.166 0.1644 0.104 0.104 0.1035 0.1065 0.1255 0.1305 0.102 0.0981 0.1089 0.1077 0.1194 0.1115 0.0498 0.0512 + 0.1689 0.0469 0.1024 0.047 0.11 0.0465 0.1255 0.0592 0.101 0.0479 0.1068 0.048 0.118 0.0476 0.048 0.0501 + 0.1368 0.1458 0.1001 0.1001 0.0968 0.1045 0.1189 0.1198 0.106 0.1042 0.1074 0.1007 0.188 0.183 0.0447 0.0495 + 0.139 0.0454 0.0998 0.0441 0.1033 0.0435 0.1187 0.0587 0.1031 0.0447 0.1025 0.045 0.181 0.0493 0.0473 0.053 + 0.0919 0.0917 0.1021 0.1033 0.0883 0.09 0.109 0.1048 0.1057 0.0942 0.0931 0.0921 0.149 0.1554 0.0405 0.0414 + 0.0909 0.0394 0.1021 0.0401 0.0907 0.0392 0.1064 0.0398 0.1085 0.0399 0.0893 0.0393 0.1551 0.0416 0.0409 0.0408 + 0.0962 0.0935 0.1036 0.1019 0.106 0.1047 0.1056 0.1119 0.1037 0.1012 0.1018 0.1006 0.1131 0.1167 0.0466 0.0416 + 0.0958 0.0428 0.1055 0.043 0.1045 0.0414 0.1093 0.0419 0.1078 0.0431 0.1019 0.0429 0.1217 0.0445 0.0412 0.042 + +547 26.3 0.1032 0.0985 0.0935 0.096 0.1 0.0973 0.0973 0.097 0.0944 0.0984 0.0985 0.1124 0.1291 0.1251 0.1061 0.0998 + 0.0933 0.0402 0.0964 0.0404 0.0961 0.0407 0.091 0.0501 0.0983 0.0401 0.0972 0.0391 0.1356 0.0434 0.1012 0.0495 + 0.1587 0.1567 0.105 0.1058 0.108 0.1069 0.1178 0.1103 0.1587 0.1686 0.1133 0.1209 0.1109 0.1053 0.1031 0.1333 + 0.1644 0.0434 0.1084 0.0438 0.1091 0.0443 0.1156 0.045 0.169 0.0439 0.1121 0.044 0.11 0.0423 0.099 0.0562 + 0.1741 0.1588 0.1057 0.1063 0.1086 0.1092 0.1055 0.1184 0.1158 0.1123 0.1085 0.1139 0.1531 0.1536 0.0477 0.0502 + 0.1607 0.0476 0.1025 0.0478 0.105 0.0484 0.1125 0.0611 0.1123 0.0493 0.1056 0.0493 0.1535 0.048 0.0485 0.0483 + 0.1619 0.1673 0.132 0.1336 0.1085 0.1079 0.1655 0.1772 0.0939 0.1054 0.1128 0.1117 0.1862 0.1839 0.0462 0.047 + 0.177 0.0463 0.137 0.0459 0.1102 0.0556 0.173 0.058 0.1079 0.0471 0.1148 0.0469 0.1812 0.0469 0.0478 0.0465 + 0.1639 0.1611 0.1042 0.1042 0.1034 0.1073 0.1255 0.1297 0.1021 0.0987 0.1089 0.1087 0.1196 0.1117 0.0496 0.0512 + 0.1664 0.0467 0.1019 0.0468 0.1104 0.0463 0.1249 0.0589 0.1018 0.0477 0.1065 0.0477 0.1176 0.0475 0.0478 0.0501 + 0.1357 0.1446 0.1006 0.0988 0.0973 0.1057 0.1188 0.1194 0.106 0.1031 0.1071 0.1019 0.1837 0.1789 0.0446 0.0496 + 0.1378 0.0452 0.1004 0.044 0.104 0.0434 0.1192 0.0586 0.1036 0.0445 0.1035 0.0449 0.1775 0.049 0.0472 0.053 + 0.0929 0.0925 0.1019 0.1044 0.0894 0.0902 0.1089 0.1043 0.1047 0.0964 0.0926 0.0923 0.1473 0.1534 0.0403 0.0413 + 0.0905 0.0392 0.102 0.04 0.0912 0.0391 0.1069 0.0398 0.1072 0.0398 0.0897 0.0392 0.1521 0.0414 0.0408 0.0407 + 0.0963 0.0949 0.104 0.101 0.1064 0.1057 0.1054 0.1125 0.1042 0.1003 0.1049 0.1015 0.1129 0.1169 0.0466 0.0416 + 0.0958 0.0426 0.106 0.0429 0.1058 0.0414 0.1082 0.0417 0.1071 0.0431 0.1012 0.0428 0.1219 0.0444 0.0411 0.0418 + +549 26.3 0.1041 0.0994 0.0936 0.0964 0.1 0.0971 0.0971 0.0966 0.094 0.0995 0.0984 0.1118 0.1282 0.1239 0.1051 0.1002 + 0.093 0.0401 0.0974 0.0402 0.0953 0.0405 0.0902 0.0499 0.0978 0.0398 0.0976 0.039 0.1347 0.0432 0.1006 0.0495 + 0.156 0.1551 0.1049 0.1051 0.1074 0.107 0.1175 0.11 0.1551 0.1648 0.114 0.1204 0.1108 0.105 0.1016 0.1312 + 0.1623 0.0432 0.1072 0.0437 0.1084 0.0442 0.1146 0.0449 0.1681 0.0438 0.1128 0.0439 0.1104 0.0423 0.0981 0.0563 + 0.1715 0.157 0.1052 0.1061 0.1094 0.1085 0.1063 0.1185 0.1154 0.112 0.1083 0.1134 0.1522 0.1514 0.0476 0.0502 + 0.1588 0.0475 0.1029 0.0478 0.1044 0.0483 0.1122 0.0609 0.1134 0.0492 0.106 0.0492 0.1517 0.048 0.0483 0.0481 + 0.1601 0.1661 0.1311 0.1337 0.1076 0.1078 0.163 0.174 0.0947 0.1052 0.1123 0.1112 0.1835 0.1813 0.0462 0.0469 + 0.1734 0.0462 0.1371 0.0458 0.1104 0.0557 0.1691 0.058 0.1075 0.0471 0.114 0.0469 0.1782 0.0469 0.0477 0.0464 + 0.1599 0.1591 0.104 0.1041 0.1035 0.1074 0.125 0.1292 0.1023 0.0987 0.1094 0.1097 0.1195 0.1121 0.0495 0.0514 + 0.1637 0.0466 0.1011 0.0467 0.1104 0.0462 0.1241 0.0588 0.1019 0.0475 0.1074 0.0477 0.1172 0.0474 0.0477 0.0503 + 0.135 0.1436 0.1013 0.098 0.0973 0.1064 0.1183 0.1188 0.1057 0.1034 0.1052 0.1036 0.1804 0.1755 0.0446 0.0499 + 0.1366 0.0452 0.1016 0.0438 0.1047 0.0435 0.1188 0.0586 0.1032 0.0445 0.103 0.0449 0.1752 0.0484 0.0472 0.0533 + 0.0921 0.0945 0.1022 0.1043 0.0903 0.0894 0.1089 0.1047 0.1048 0.0976 0.0919 0.0925 0.1454 0.1517 0.0403 0.0412 + 0.0897 0.0392 0.1019 0.04 0.0918 0.039 0.1069 0.0398 0.1068 0.0397 0.0905 0.0391 0.1496 0.0415 0.0406 0.0407 + 0.0963 0.095 0.1032 0.0998 0.1071 0.1046 0.1051 0.1119 0.1042 0.1004 0.1071 0.1023 0.1132 0.1167 0.0465 0.0416 + 0.0961 0.0426 0.106 0.0429 0.106 0.0413 0.1062 0.0417 0.1059 0.0432 0.1022 0.0428 0.1218 0.0443 0.0411 0.0419 + +551 26.3 0.105 0.1003 0.0938 0.0969 0.1013 0.0971 0.0965 0.0957 0.0936 0.0997 0.099 0.1107 0.1277 0.1225 0.1045 0.1002 + 0.0936 0.04 0.0974 0.0401 0.0947 0.0404 0.0897 0.0498 0.0968 0.0397 0.0966 0.039 0.1345 0.0431 0.101 0.0492 + 0.1525 0.1528 0.105 0.1048 0.1074 0.1073 0.1174 0.1104 0.1514 0.1602 0.1153 0.1197 0.1108 0.1039 0.1 0.1286 + 0.1584 0.0433 0.1065 0.0438 0.1076 0.0442 0.114 0.0448 0.1644 0.0438 0.1134 0.0439 0.1105 0.0422 0.0969 0.0561 + 0.1679 0.1543 0.1041 0.1064 0.1095 0.1077 0.1063 0.118 0.1155 0.112 0.1078 0.1117 0.151 0.149 0.0477 0.05 + 0.1563 0.0476 0.1032 0.0478 0.1047 0.0484 0.1119 0.0609 0.1121 0.0492 0.1068 0.0492 0.1495 0.0481 0.0484 0.0482 + 0.1573 0.1637 0.1297 0.1325 0.1069 0.1077 0.1595 0.1699 0.0955 0.1045 0.1122 0.1113 0.1798 0.1777 0.0462 0.0469 + 0.1689 0.0461 0.1362 0.0458 0.1099 0.0555 0.1645 0.0581 0.1072 0.047 0.1129 0.0468 0.1743 0.0468 0.0478 0.0463 + 0.1551 0.1562 0.1037 0.104 0.1039 0.1076 0.1244 0.1292 0.1026 0.0994 0.1093 0.1101 0.1192 0.1114 0.0494 0.0509 + 0.1592 0.0463 0.1004 0.0467 0.1104 0.0461 0.1238 0.0586 0.1026 0.0474 0.1076 0.0475 0.1172 0.0472 0.0475 0.0499 + 0.1342 0.1424 0.1019 0.0989 0.0975 0.1061 0.1181 0.1181 0.1053 0.1047 0.1044 0.1039 0.1757 0.1713 0.0446 0.0495 + 0.1353 0.0449 0.1019 0.0439 0.1058 0.0435 0.118 0.0585 0.1034 0.0444 0.1029 0.0446 0.1713 0.048 0.0471 0.0528 + 0.0918 0.0957 0.1024 0.1042 0.0905 0.0889 0.1082 0.1045 0.103 0.0984 0.0919 0.0934 0.1425 0.1489 0.0402 0.0411 + 0.09 0.0391 0.1017 0.04 0.0925 0.039 0.1062 0.0397 0.1053 0.0397 0.0917 0.039 0.1466 0.0413 0.0406 0.0406 + 0.0965 0.0952 0.102 0.101 0.1077 0.1046 0.1044 0.1124 0.1028 0.1001 0.108 0.103 0.1173 0.1167 0.0465 0.0414 + 0.0968 0.0426 0.107 0.0428 0.1056 0.0413 0.1054 0.0417 0.1043 0.0429 0.1055 0.0427 0.1217 0.0443 0.041 0.0417 + +553 26.3 0.1053 0.1011 0.0941 0.0971 0.1017 0.0972 0.0952 0.0949 0.0945 0.0996 0.0992 0.1098 0.1271 0.1212 0.104 0.1009 + 0.0944 0.0399 0.0987 0.04 0.0946 0.0404 0.0894 0.0497 0.0959 0.0397 0.0959 0.0388 0.1338 0.043 0.1015 0.0491 + 0.1494 0.1504 0.1061 0.1047 0.1074 0.1075 0.1154 0.1107 0.147 0.1553 0.1174 0.119 0.1111 0.1039 0.0986 0.1263 + 0.1538 0.0432 0.1061 0.0437 0.1067 0.0441 0.1136 0.0448 0.1634 0.0437 0.1141 0.0439 0.1109 0.0422 0.0955 0.0561 + 0.1644 0.1518 0.1033 0.1062 0.1084 0.1068 0.1061 0.1178 0.1163 0.1115 0.1071 0.1108 0.1501 0.1465 0.0477 0.05 + 0.1532 0.0474 0.1027 0.0479 0.1046 0.0482 0.1111 0.0608 0.1122 0.0492 0.1073 0.0491 0.1479 0.0479 0.0483 0.048 + 0.1544 0.161 0.1285 0.1318 0.1061 0.1071 0.1559 0.1656 0.0966 0.1032 0.1125 0.1107 0.1768 0.174 0.0461 0.0467 + 0.1641 0.0458 0.1351 0.0456 0.1084 0.0556 0.1603 0.0577 0.1062 0.0467 0.112 0.0466 0.1711 0.0467 0.0475 0.0462 + 0.151 0.1539 0.1034 0.104 0.1035 0.1082 0.1237 0.1287 0.1024 0.1002 0.1091 0.1107 0.1195 0.1111 0.0493 0.0509 + 0.1542 0.0462 0.1003 0.0465 0.1101 0.046 0.1222 0.0585 0.1028 0.0472 0.1079 0.0473 0.1172 0.0472 0.0475 0.0499 + 0.1335 0.1412 0.1023 0.0996 0.0971 0.1066 0.1167 0.1181 0.1055 0.106 0.1045 0.1042 0.1724 0.1677 0.0445 0.0494 + 0.1346 0.0448 0.1032 0.0437 0.1062 0.0433 0.1164 0.0583 0.1036 0.0443 0.103 0.0444 0.1688 0.0479 0.047 0.053 + 0.092 0.0965 0.1019 0.1037 0.0904 0.0893 0.108 0.1038 0.1049 0.0994 0.0915 0.0929 0.1396 0.1462 0.0402 0.0409 + 0.0905 0.039 0.1014 0.0399 0.0914 0.0389 0.1048 0.0396 0.1074 0.0396 0.0933 0.0388 0.1437 0.0411 0.0405 0.0405 + 0.0968 0.0954 0.1018 0.1021 0.1082 0.1041 0.1035 0.1112 0.1037 0.0992 0.1086 0.1043 0.1176 0.1161 0.0463 0.0413 + 0.0974 0.0425 0.1073 0.0424 0.1055 0.0412 0.1046 0.0414 0.105 0.0428 0.1073 0.0425 0.1217 0.0441 0.0408 0.0417 + +555 26.3 0.1057 0.1025 0.0953 0.0971 0.1011 0.0971 0.0946 0.0947 0.0943 0.1002 0.0991 0.1097 0.1269 0.1203 0.1039 0.1005 + 0.0956 0.0398 0.0996 0.04 0.0944 0.0402 0.0892 0.0496 0.0952 0.0395 0.0948 0.0387 0.1333 0.0428 0.1008 0.0489 + 0.1467 0.1485 0.1071 0.1054 0.1073 0.1078 0.1166 0.1111 0.1431 0.1505 0.1186 0.1187 0.1119 0.1044 0.0968 0.1239 + 0.1494 0.0433 0.1065 0.0439 0.1062 0.0441 0.1133 0.045 0.1583 0.0437 0.1148 0.0438 0.1125 0.0424 0.0938 0.056 + 0.1618 0.1494 0.1036 0.1062 0.1072 0.1063 0.1061 0.1174 0.1159 0.1107 0.1076 0.1098 0.1491 0.1438 0.0478 0.0499 + 0.1499 0.0474 0.1023 0.0479 0.104 0.0483 0.1107 0.0607 0.111 0.0491 0.1073 0.049 0.1463 0.0479 0.0483 0.0479 + 0.1516 0.1584 0.1277 0.1309 0.106 0.1083 0.1521 0.1612 0.0972 0.1019 0.1126 0.1103 0.1739 0.1698 0.0459 0.0465 + 0.1591 0.0457 0.1333 0.0455 0.107 0.0553 0.1563 0.0574 0.106 0.0464 0.1107 0.0465 0.168 0.0465 0.0475 0.0459 + 0.1479 0.1514 0.1031 0.1047 0.1036 0.1079 0.1237 0.128 0.1029 0.1006 0.1093 0.1111 0.1201 0.1112 0.0492 0.0507 + 0.1499 0.0462 0.1004 0.0465 0.1101 0.0459 0.1223 0.0584 0.1043 0.0471 0.1091 0.0473 0.1175 0.0471 0.0475 0.0497 + 0.1331 0.1404 0.1022 0.1001 0.0969 0.1065 0.1164 0.1175 0.1044 0.1072 0.1046 0.1046 0.1691 0.1638 0.0445 0.0492 + 0.1339 0.0447 0.1044 0.0436 0.106 0.0434 0.1156 0.0583 0.1043 0.0443 0.1028 0.0444 0.1662 0.0479 0.0469 0.0527 + 0.0924 0.0972 0.1018 0.1033 0.0908 0.0902 0.1077 0.103 0.1048 0.101 0.0917 0.0942 0.1372 0.1433 0.0402 0.041 + 0.0918 0.0391 0.1011 0.04 0.0909 0.0389 0.103 0.0395 0.1076 0.0396 0.0947 0.0389 0.1413 0.0412 0.0405 0.0405 + 0.0977 0.0969 0.1017 0.1025 0.1081 0.1038 0.1026 0.11 0.1025 0.098 0.1091 0.1044 0.1184 0.1159 0.046 0.0411 + 0.0984 0.0422 0.1072 0.0426 0.1062 0.0409 0.1035 0.0414 0.1035 0.0427 0.108 0.0424 0.1219 0.044 0.0408 0.0415 + +557 26.3 0.1038 0.1024 0.0962 0.0972 0.1007 0.0972 0.094 0.0951 0.0939 0.1004 0.0986 0.1094 0.1258 0.1195 0.1037 0.101 + 0.0951 0.0395 0.0987 0.0397 0.0935 0.0399 0.0885 0.0492 0.0947 0.0393 0.0925 0.0384 0.1311 0.0425 0.1018 0.0487 + 0.1425 0.1454 0.1073 0.1059 0.1072 0.1077 0.1183 0.1104 0.1393 0.1465 0.1187 0.1187 0.1102 0.1045 0.0953 0.1218 + 0.1439 0.0433 0.1064 0.0438 0.1057 0.0441 0.1133 0.0449 0.1557 0.0437 0.1158 0.0437 0.1113 0.0422 0.092 0.056 + 0.1578 0.1469 0.104 0.105 0.1059 0.1054 0.1055 0.117 0.1172 0.11 0.1081 0.109 0.1466 0.141 0.0474 0.0497 + 0.145 0.0472 0.1017 0.0477 0.1038 0.048 0.1108 0.0605 0.1118 0.0491 0.108 0.049 0.144 0.0478 0.0481 0.0479 + 0.1477 0.1549 0.1262 0.13 0.1061 0.109 0.1483 0.1575 0.0978 0.1021 0.1125 0.1097 0.1699 0.1657 0.0459 0.0464 + 0.1538 0.0455 0.1322 0.0454 0.1058 0.0552 0.1531 0.0572 0.1052 0.0464 0.1098 0.0463 0.1647 0.0465 0.0473 0.0458 + 0.1438 0.1484 0.1023 0.1049 0.1031 0.1071 0.1237 0.1274 0.1036 0.1007 0.1094 0.111 0.1185 0.1116 0.049 0.0507 + 0.1449 0.046 0.1009 0.0463 0.1096 0.0456 0.1228 0.0583 0.1048 0.0469 0.1091 0.0471 0.1174 0.0469 0.0473 0.0495 + 0.1313 0.1386 0.1019 0.1009 0.0976 0.1056 0.116 0.1167 0.1043 0.1081 0.1033 0.1051 0.1654 0.16 0.0444 0.0492 + 0.1315 0.0445 0.1049 0.0435 0.1056 0.0432 0.1154 0.0582 0.1044 0.0441 0.1036 0.0443 0.1629 0.0478 0.0467 0.0526 + 0.0913 0.0973 0.1022 0.1034 0.0911 0.0905 0.1073 0.1022 0.1058 0.1019 0.0914 0.0941 0.1334 0.1403 0.0401 0.0409 + 0.0906 0.0391 0.1007 0.04 0.0896 0.0388 0.102 0.0395 0.1098 0.0395 0.095 0.0389 0.1375 0.0411 0.0406 0.0404 + 0.0968 0.0967 0.1014 0.103 0.1078 0.1028 0.1013 0.1091 0.1021 0.0965 0.109 0.1041 0.1174 0.1144 0.0455 0.0409 + 0.0969 0.0422 0.1064 0.0422 0.1064 0.0409 0.1034 0.0412 0.1041 0.0424 0.1075 0.0421 0.1207 0.0436 0.0404 0.0413 + +559 26.3 0.1028 0.1023 0.0974 0.0979 0.1003 0.0973 0.094 0.0953 0.0941 0.1005 0.0985 0.1094 0.1251 0.1185 0.1031 0.1003 + 0.0949 0.0393 0.0978 0.0398 0.0936 0.0397 0.0886 0.0491 0.0941 0.0392 0.0913 0.0384 0.1298 0.0425 0.1025 0.0486 + 0.1392 0.1415 0.1077 0.1062 0.107 0.1075 0.1186 0.1096 0.136 0.143 0.117 0.1178 0.1102 0.1045 0.0932 0.1198 + 0.1397 0.0433 0.107 0.0437 0.1056 0.0439 0.1139 0.0446 0.151 0.0436 0.1156 0.0436 0.1103 0.0421 0.09 0.0559 + 0.1546 0.1435 0.1044 0.1043 0.1054 0.1054 0.105 0.1169 0.1172 0.1086 0.1087 0.1094 0.1437 0.1387 0.0475 0.0499 + 0.1412 0.0472 0.101 0.0476 0.1045 0.048 0.1104 0.0606 0.1111 0.049 0.1076 0.0488 0.1414 0.0477 0.048 0.0478 + 0.1449 0.1507 0.1253 0.129 0.1059 0.1094 0.1446 0.1545 0.0974 0.1023 0.1117 0.1088 0.1665 0.1617 0.0457 0.0463 + 0.1497 0.0454 0.1305 0.0454 0.1053 0.0551 0.1496 0.0575 0.1039 0.0461 0.1093 0.0461 0.1612 0.0463 0.0473 0.0457 + 0.1408 0.1447 0.102 0.1044 0.1031 0.1065 0.1234 0.1269 0.104 0.101 0.1098 0.1097 0.1185 0.1117 0.0488 0.0506 + 0.1416 0.0457 0.1006 0.0464 0.1095 0.0456 0.1224 0.0579 0.1044 0.0468 0.1094 0.047 0.1171 0.0469 0.0471 0.0495 + 0.1307 0.1362 0.1015 0.1018 0.0978 0.105 0.1155 0.1164 0.104 0.1087 0.1032 0.1055 0.1614 0.1566 0.0443 0.0492 + 0.1298 0.0443 0.1045 0.0433 0.1052 0.0431 0.1151 0.058 0.1039 0.044 0.1038 0.0441 0.159 0.0476 0.0468 0.0527 + 0.0918 0.0965 0.1013 0.1039 0.0909 0.0899 0.1071 0.1008 0.1058 0.1021 0.0912 0.094 0.1304 0.1373 0.0401 0.0409 + 0.0909 0.039 0.0997 0.0398 0.0892 0.0385 0.1016 0.0397 0.1104 0.0394 0.0944 0.0387 0.1343 0.0409 0.0403 0.0403 + 0.0968 0.0955 0.1007 0.1026 0.1075 0.1025 0.1011 0.1085 0.101 0.0962 0.1076 0.1041 0.1167 0.1137 0.0457 0.0408 + 0.0952 0.042 0.1057 0.0422 0.1059 0.0407 0.1034 0.041 0.1039 0.0423 0.1086 0.0421 0.1199 0.0437 0.0404 0.0412 + +561 26.4 0.1016 0.1022 0.0977 0.0982 0.1003 0.0977 0.0944 0.0956 0.0937 0.1008 0.0984 0.1099 0.1236 0.1172 0.1023 0.1005 + 0.0947 0.0394 0.0974 0.0395 0.0942 0.0397 0.0886 0.0489 0.0937 0.0392 0.0904 0.0382 0.1273 0.0422 0.1028 0.0484 + 0.1358 0.138 0.1076 0.1064 0.1067 0.1072 0.1176 0.1095 0.1322 0.1396 0.1154 0.1178 0.1093 0.1037 0.0912 0.1178 + 0.1357 0.0432 0.1078 0.0437 0.1061 0.0439 0.1144 0.0447 0.1481 0.0436 0.1147 0.0436 0.1092 0.0421 0.0878 0.0559 + 0.1512 0.1401 0.1051 0.1042 0.1053 0.1052 0.1041 0.1168 0.1179 0.1075 0.1088 0.1093 0.1407 0.1359 0.0474 0.0497 + 0.1378 0.0471 0.1008 0.0476 0.1047 0.0479 0.1107 0.0603 0.1112 0.0489 0.1077 0.0487 0.1392 0.0476 0.048 0.0477 + 0.142 0.1468 0.1241 0.1276 0.1063 0.1094 0.141 0.151 0.0975 0.1027 0.1109 0.1078 0.1627 0.1574 0.0456 0.0461 + 0.1457 0.0452 0.1288 0.0453 0.1048 0.055 0.1461 0.0569 0.1033 0.046 0.1088 0.0459 0.1578 0.0462 0.0471 0.0455 + 0.1379 0.141 0.1018 0.1035 0.1022 0.1057 0.1225 0.1269 0.1041 0.1013 0.1097 0.1099 0.1183 0.1114 0.0489 0.0505 + 0.1387 0.0456 0.1005 0.0461 0.109 0.0453 0.1209 0.058 0.1038 0.0465 0.1094 0.0468 0.1167 0.0468 0.047 0.0496 + 0.1301 0.1345 0.1015 0.1023 0.0985 0.1048 0.114 0.1165 0.1037 0.1094 0.1031 0.1055 0.1578 0.1528 0.0442 0.0491 + 0.1284 0.0441 0.1049 0.0433 0.1048 0.0431 0.1142 0.058 0.1039 0.0439 0.1043 0.044 0.1556 0.0473 0.0465 0.0526 + 0.0916 0.096 0.1012 0.1046 0.0915 0.0899 0.1068 0.0993 0.1067 0.1026 0.091 0.0943 0.1272 0.134 0.0399 0.0407 + 0.0915 0.0389 0.0986 0.0397 0.0892 0.0386 0.1017 0.0392 0.1108 0.0393 0.0933 0.0386 0.1306 0.0409 0.0402 0.0401 + 0.0973 0.0958 0.1005 0.1029 0.1076 0.1017 0.1008 0.107 0.1009 0.0958 0.1077 0.1041 0.1158 0.1131 0.0455 0.0407 + 0.0947 0.042 0.1054 0.0421 0.1055 0.0407 0.1038 0.041 0.1048 0.0422 0.1092 0.0421 0.1193 0.0434 0.0403 0.0412 + +563 26.4 0.1007 0.1018 0.0978 0.098 0.1002 0.0982 0.095 0.0961 0.093 0.1006 0.0987 0.11 0.1227 0.1159 0.1023 0.1005 + 0.0939 0.0393 0.098 0.0393 0.0943 0.0396 0.0888 0.0489 0.0924 0.0391 0.0904 0.0382 0.1254 0.0421 0.1031 0.0486 + 0.1326 0.1345 0.1076 0.1076 0.1063 0.1067 0.1171 0.1094 0.1296 0.1367 0.1135 0.1165 0.1085 0.1037 0.089 0.1157 + 0.1319 0.0432 0.108 0.0436 0.1057 0.0437 0.1147 0.0441 0.1428 0.0434 0.1138 0.0437 0.1077 0.0421 0.086 0.0558 + 0.148 0.1373 0.1047 0.104 0.1052 0.1054 0.1036 0.1172 0.1173 0.1063 0.1093 0.1089 0.1375 0.1332 0.0472 0.0497 + 0.135 0.0469 0.1011 0.0476 0.105 0.0476 0.11 0.0604 0.1092 0.0488 0.1066 0.0487 0.1362 0.0475 0.0478 0.0474 + 0.1391 0.1429 0.123 0.1267 0.1063 0.1091 0.1381 0.1482 0.0973 0.1033 0.1103 0.107 0.1591 0.1535 0.0456 0.046 + 0.1417 0.045 0.1269 0.0452 0.1053 0.0548 0.1428 0.0574 0.1036 0.0458 0.1086 0.0459 0.1539 0.0462 0.0471 0.0454 + 0.1348 0.1373 0.1022 0.1028 0.1021 0.1052 0.1221 0.1256 0.1046 0.1015 0.1092 0.1096 0.1176 0.1106 0.0488 0.0505 + 0.1363 0.0453 0.1007 0.0461 0.1091 0.0453 0.1214 0.0576 0.1044 0.0464 0.1088 0.0467 0.1165 0.0467 0.0469 0.0494 + 0.129 0.1326 0.1016 0.1018 0.0993 0.105 0.1139 0.1155 0.1033 0.1091 0.1025 0.1049 0.1535 0.149 0.0441 0.0493 + 0.1268 0.044 0.104 0.0432 0.1047 0.0429 0.1147 0.0577 0.1032 0.0438 0.1043 0.0438 0.1514 0.0472 0.0464 0.0528 + 0.0918 0.0964 0.1007 0.1045 0.0909 0.0895 0.1065 0.0985 0.1046 0.1029 0.0906 0.0945 0.1244 0.1308 0.0398 0.0405 + 0.091 0.0388 0.0975 0.0398 0.0892 0.0386 0.1013 0.0393 0.1088 0.0393 0.0924 0.0384 0.1272 0.0407 0.0403 0.0401 + 0.0981 0.0953 0.1001 0.1031 0.1075 0.1011 0.1003 0.1084 0.0987 0.0954 0.1068 0.1047 0.1155 0.1115 0.0452 0.0406 + 0.0944 0.0419 0.1058 0.042 0.1048 0.0406 0.1032 0.041 0.104 0.0423 0.109 0.0419 0.1183 0.0433 0.0402 0.0412 + +565 26.4 0.1006 0.1007 0.097 0.0983 0.1 0.0984 0.0958 0.0968 0.0923 0.1004 0.0984 0.1101 0.1215 0.1148 0.1013 0.1007 + 0.0933 0.0392 0.0981 0.0394 0.0942 0.0394 0.0887 0.0487 0.0925 0.0389 0.0899 0.0382 0.1241 0.0422 0.1036 0.0484 + 0.1287 0.1309 0.1073 0.1076 0.1057 0.1063 0.1168 0.1095 0.1262 0.1335 0.1121 0.1159 0.1081 0.103 0.0868 0.1131 + 0.1283 0.0431 0.108 0.0436 0.1052 0.0435 0.1148 0.0442 0.1404 0.0434 0.1124 0.0436 0.106 0.042 0.0839 0.0558 + 0.1442 0.1342 0.1039 0.1036 0.1061 0.1059 0.1037 0.117 0.1169 0.1053 0.1083 0.1084 0.1345 0.1304 0.0471 0.0496 + 0.1327 0.0469 0.102 0.0475 0.105 0.0474 0.1089 0.0602 0.1082 0.0487 0.1051 0.0485 0.1333 0.0474 0.0477 0.0474 + 0.1358 0.1385 0.1218 0.1254 0.1067 0.1089 0.1351 0.1449 0.0983 0.1038 0.1093 0.1059 0.1552 0.1491 0.0455 0.0459 + 0.138 0.0449 0.1257 0.0451 0.1054 0.0546 0.1398 0.057 0.1024 0.0458 0.1084 0.0458 0.1502 0.0461 0.047 0.0453 + 0.1314 0.1332 0.1022 0.1021 0.101 0.1045 0.1207 0.1246 0.1046 0.1015 0.1086 0.1093 0.1172 0.1107 0.0487 0.0505 + 0.1336 0.0452 0.1002 0.0459 0.1081 0.0452 0.1195 0.0575 0.1044 0.0462 0.1088 0.0464 0.1162 0.0465 0.0468 0.0494 + 0.127 0.131 0.102 0.1014 0.0996 0.1053 0.1124 0.115 0.1028 0.1087 0.1016 0.1046 0.1498 0.1452 0.044 0.0494 + 0.1255 0.0438 0.1037 0.0431 0.1047 0.0428 0.1141 0.0575 0.1027 0.0436 0.1038 0.0437 0.1478 0.047 0.0463 0.0528 + 0.0919 0.0964 0.1002 0.104 0.0918 0.0899 0.1059 0.0972 0.105 0.1028 0.0905 0.0941 0.1211 0.1271 0.0397 0.0404 + 0.0908 0.0388 0.0964 0.0396 0.0893 0.0384 0.1012 0.0391 0.109 0.0391 0.0918 0.0384 0.1237 0.0407 0.04 0.0399 + 0.0979 0.0954 0.0995 0.1033 0.1072 0.1005 0.0993 0.1079 0.0989 0.0952 0.1067 0.1043 0.1147 0.1097 0.0452 0.0405 + 0.0947 0.0416 0.1062 0.0418 0.1046 0.0404 0.1025 0.0407 0.1045 0.0421 0.1094 0.0419 0.1168 0.0432 0.0402 0.041 + + 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 + 555 555 563 527 553 543 545 545 531 533 537 543 531 543 541 557 + 555 525 555 525 539 525 533 525 537 525 549 525 533 525 565 525 + 539 531 537 563 537 541 559 545 535 535 557 541 555 543 537 535 + 525 525 541 525 539 525 541 525 531 525 557 525 555 525 531 525 + 533 533 547 551 551 547 549 543 561 545 563 547 537 535 525 533 + 539 525 551 525 545 525 545 525 549 525 557 525 535 525 525 525 + 527 533 537 531 543 559 535 537 565 543 545 543 533 531 525 525 + 525 525 539 525 543 525 539 525 547 525 547 525 525 525 525 525 + 525 535 547 537 551 553 543 541 563 563 539 555 555 549 525 525 + 533 525 543 525 547 525 545 525 557 525 531 525 539 525 525 525 + 533 543 553 561 565 553 531 543 539 561 543 559 535 533 525 527 + 543 525 557 525 553 525 531 525 527 525 561 525 531 545 525 527 + 547 557 551 533 565 557 545 535 561 563 545 563 527 535 525 525 + 555 525 545 525 529 525 547 525 561 525 557 525 533 525 525 525 + 563 555 547 535 553 531 537 541 535 533 555 563 531 527 525 531 + 555 531 553 531 557 531 539 531 525 525 565 531 531 525 525 531 +~End +Original Filename: my_plate; Date Last Saved: 6/11/2021 1:11:11 PM From 36087cc27d91553be9bbfd9fdaabf85270ba9cca Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Wed, 11 Jun 2025 13:38:38 -0500 Subject: [PATCH 02/13] ammend --- .../parsers/moldev_softmax_pro/softmax_pro_structure.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index 2cc267bf2..5af26bc20 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -918,12 +918,10 @@ def get_wavelengths_from_start_end_step( def _position_exists(self, position: str) -> bool: """Check if a well position exists in the actual data (for partial plates).""" if isinstance(self.block_data, PlateData): - # PlateWavelengthData - check data_elements directly for plate_wavelength_data in self.block_data.raw_data.wavelength_data: if position in plate_wavelength_data.data_elements: return True elif isinstance(self.block_data, TimeData): - # TimeWavelengthData - check measurement_data for time_wavelength_data in self.block_data.raw_data.wavelength_data: if any( position in measurement.data_elements From 4388d2735f5b297d4869f527e36de7fa65ef46d7 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Wed, 11 Jun 2025 13:57:21 -0500 Subject: [PATCH 03/13] updated asm to comply with the data cube for spectrum data --- .../testdata/partial_plate.json | 163782 ++------------- 1 file changed, 12643 insertions(+), 151139 deletions(-) diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json index 66d71379d..34beb356a 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate.json @@ -1,5 +1,5 @@ { - "$asm.manifest": "http://purl.allotrope.org/manifests/plate-reader/REC/2024/06/plate-reader.manifest", + "$asm.manifest": "http://purl.allotrope.org/manifests/plate-reader/REC/2025/03/plate-reader.manifest", "plate reader aggregate document": { "plate reader document": [ { @@ -10,587 +10,1281 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_0", "sample document": { - "sample identifier": "Plate1 A1", "location identifier": "A1", + "sample identifier": "Plate1 A1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0994, 0.1013, 0.101, 0.1016, 0.1025, 0.102, 0.1027, 0.1027, 0.1026, 0.1028, 0.1028, 0.1032, 0.1041, 0.105, 0.1053, 0.1057, 0.1038, 0.1028, 0.1016, 0.1007, 0.1006] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_256", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A2", + "sample identifier": "Plate1 A2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0964, 0.0979, 0.0987, 0.0975, 0.0962, 0.0947, 0.0953, 0.0954, 0.0959, 0.0956, 0.0967, 0.0985, 0.0994, 0.1003, 0.1011, 0.1025, 0.1024, 0.1023, 0.1022, 0.1018, 0.1007] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_512", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A3", + "sample identifier": "Plate1 A3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0967, 0.0968, 0.0958, 0.0949, 0.0935, 0.0915, 0.0905, 0.0889, 0.0901, 0.091, 0.0919, 0.0935, 0.0936, 0.0938, 0.0941, 0.0953, 0.0962, 0.0974, 0.0977, 0.0978, 0.097] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_768", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A4", + "sample identifier": "Plate1 A4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0972, 0.0986, 0.098, 0.0971, 0.0967, 0.0966, 0.0972, 0.0968, 0.0965, 0.0955, 0.0955, 0.096, 0.0964, 0.0969, 0.0971, 0.0971, 0.0972, 0.0979, 0.0982, 0.098, 0.0983] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1024", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A5", + "sample identifier": "Plate1 A5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.095, 0.0953, 0.0962, 0.0951, 0.0942, 0.0949, 0.0976, 0.0993, 0.0995, 0.0993, 0.0994, 0.1, 0.1, 0.1013, 0.1017, 0.1011, 0.1007, 0.1003, 0.1003, 0.1002, 0.1] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1280", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A6", + "sample identifier": "Plate1 A6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0947, 0.095, 0.0949, 0.0964, 0.0978, 0.0981, 0.097, 0.0968, 0.098, 0.0985, 0.098, 0.0973, 0.0971, 0.0971, 0.0972, 0.0971, 0.0972, 0.0973, 0.0977, 0.0982, 0.0984] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1536", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_6", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A7", + "sample identifier": "Plate1 A7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0932, 0.0932, 0.0941, 0.094, 0.0943, 0.0942, 0.0951, 0.097, 0.0973, 0.0975, 0.0978, 0.0973, 0.0971, 0.0965, 0.0952, 0.0946, 0.094, 0.094, 0.0944, 0.095, 0.0958] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1792", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_7", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A8", + "sample identifier": "Plate1 A8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0936, 0.0941, 0.0953, 0.0946, 0.0952, 0.095, 0.0949, 0.0952, 0.0965, 0.097, 0.0972, 0.097, 0.0966, 0.0957, 0.0949, 0.0947, 0.0951, 0.0953, 0.0956, 0.0961, 0.0968] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2048", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_8", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A9", + "sample identifier": "Plate1 A9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0958, 0.0969, 0.0972, 0.0976, 0.0974, 0.0971, 0.0964, 0.0964, 0.0966, 0.0956, 0.0952, 0.0944, 0.094, 0.0936, 0.0945, 0.0943, 0.0939, 0.0941, 0.0937, 0.093, 0.0923] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2304", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_9", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A10", + "sample identifier": "Plate1 A10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0969, 0.0974, 0.0991, 0.0997, 0.101, 0.1007, 0.0988, 0.097, 0.0969, 0.0973, 0.0977, 0.0984, 0.0995, 0.0997, 0.0996, 0.1002, 0.1004, 0.1005, 0.1008, 0.1006, 0.1004] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2560", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_10", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A11", + "sample identifier": "Plate1 A11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.099, 0.0993, 0.0989, 0.0986, 0.0989, 0.1, 0.1005, 0.1003, 0.0999, 0.0993, 0.0982, 0.0985, 0.0984, 0.099, 0.0992, 0.0991, 0.0986, 0.0985, 0.0984, 0.0987, 0.0984] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2816", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_11", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A12", + "sample identifier": "Plate1 A12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1037, 0.1045, 0.1079, 0.1088, 0.1099, 0.1106, 0.1099, 0.111, 0.1124, 0.1133, 0.1129, 0.1124, 0.1118, 0.1107, 0.1098, 0.1097, 0.1094, 0.1094, 0.1099, 0.11, 0.1101] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3072", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_12", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A13", + "sample identifier": "Plate1 A13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1302, 0.1314, 0.1325, 0.1327, 0.1325, 0.1318, 0.1312, 0.1317, 0.1306, 0.1301, 0.1298, 0.1291, 0.1282, 0.1277, 0.1271, 0.1269, 0.1258, 0.1251, 0.1236, 0.1227, 0.1215] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3328", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_13", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A14", + "sample identifier": "Plate1 A14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1248, 0.1255, 0.1258, 0.1256, 0.1259, 0.1263, 0.125, 0.1248, 0.126, 0.1267, 0.1262, 0.1251, 0.1239, 0.1225, 0.1212, 0.1203, 0.1195, 0.1185, 0.1172, 0.1159, 0.1148] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3584", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_14", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A15", + "sample identifier": "Plate1 A15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1008, 0.1009, 0.1011, 0.1017, 0.1029, 0.1034, 0.1055, 0.107, 0.1077, 0.1069, 0.1063, 0.1061, 0.1051, 0.1045, 0.104, 0.1039, 0.1037, 0.1031, 0.1023, 0.1023, 0.1013] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3840", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_15", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "A16", + "sample identifier": "Plate1 A16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1006, 0.1008, 0.1005, 0.0998, 0.0991, 0.0996, 0.0998, 0.0991, 0.0992, 0.0995, 0.0998, 0.0998, 0.1002, 0.1002, 0.1009, 0.1005, 0.101, 0.1003, 0.1005, 0.1005, 0.1007] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4096", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_16", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "B1", + "sample identifier": "Plate1 B1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4352", - "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.091, 0.0927, 0.0936, 0.0952, 0.0946, 0.0949, 0.0945, 0.0951, 0.0954, 0.095, 0.0942, 0.0933, 0.093, 0.0936, 0.0944, 0.0956, 0.0951, 0.0949, 0.0947, 0.0939, 0.0933] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4608", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_17", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "B2", + "sample identifier": "Plate1 B2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0414, 0.0412, 0.0411, 0.041, 0.0409, 0.0408, 0.0408, 0.0406, 0.0406, 0.0403, 0.0403, 0.0402, 0.0401, 0.04, 0.0399, 0.0398, 0.0395, 0.0393, 0.0394, 0.0393, 0.0392] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4864", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_18", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "B3", + "sample identifier": "Plate1 B3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0937, 0.0938, 0.0964, 0.0982, 0.097, 0.0963, 0.0965, 0.0942, 0.0928, 0.0936, 0.0957, 0.0964, 0.0974, 0.0974, 0.0987, 0.0996, 0.0987, 0.0978, 0.0974, 0.098, 0.0981] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5120", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_19", "sample document": { - "sample identifier": "Plate1 A1", - "location identifier": "A1", + "location identifier": "B4", + "sample identifier": "Plate1 B4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0415, 0.0413, 0.0412, 0.0411, 0.0411, 0.0409, 0.0409, 0.0408, 0.0406, 0.0405, 0.0404, 0.0404, 0.0402, 0.0401, 0.04, 0.04, 0.0397, 0.0398, 0.0395, 0.0393, 0.0394] + ] + } } } ], @@ -603,7 +1297,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 555.0, + "value": 525.0, "unit": "nm" } } @@ -616,587 +1310,1216 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_20", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B5", + "sample identifier": "Plate1 B5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0933, 0.0946, 0.0955, 0.0962, 0.0965, 0.0965, 0.0964, 0.0969, 0.0966, 0.0961, 0.0965, 0.0961, 0.0953, 0.0947, 0.0946, 0.0944, 0.0935, 0.0936, 0.0942, 0.0943, 0.0942] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_257", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_21", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B6", + "sample identifier": "Plate1 B6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0979, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.042, 0.0419, 0.0417, 0.0416, 0.0415, 0.0414, 0.0413, 0.0412, 0.041, 0.0409, 0.0409, 0.0407, 0.0405, 0.0404, 0.0404, 0.0402, 0.0399, 0.0397, 0.0397, 0.0396, 0.0394] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_513", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_22", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B7", + "sample identifier": "Plate1 B7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0862, 0.0863, 0.0869, 0.0894, 0.0921, 0.0914, 0.0908, 0.0905, 0.0911, 0.091, 0.0913, 0.091, 0.0902, 0.0897, 0.0894, 0.0892, 0.0885, 0.0886, 0.0886, 0.0888, 0.0887] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_769", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_23", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B8", + "sample identifier": "Plate1 B8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0975, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0515, 0.0514, 0.0512, 0.0511, 0.0509, 0.0507, 0.0507, 0.0505, 0.0505, 0.0502, 0.0501, 0.0501, 0.0499, 0.0498, 0.0497, 0.0496, 0.0492, 0.0491, 0.0489, 0.0489, 0.0487] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1025", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_24", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B9", + "sample identifier": "Plate1 B9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0961, 0.0971, 0.0978, 0.0984, 0.1, 0.1002, 0.1005, 0.0998, 0.0989, 0.0996, 0.0988, 0.0983, 0.0978, 0.0968, 0.0959, 0.0952, 0.0947, 0.0941, 0.0937, 0.0924, 0.0925] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1281", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_25", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B10", + "sample identifier": "Plate1 B10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0411, 0.0409, 0.0409, 0.0407, 0.0407, 0.0404, 0.0404, 0.0404, 0.0403, 0.0401, 0.04, 0.0401, 0.0398, 0.0397, 0.0397, 0.0395, 0.0393, 0.0392, 0.0392, 0.0391, 0.0389] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1537", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_26", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B11", + "sample identifier": "Plate1 B11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0934, 0.0947, 0.0943, 0.094, 0.0942, 0.0946, 0.0943, 0.0943, 0.0943, 0.0954, 0.0964, 0.0972, 0.0976, 0.0966, 0.0959, 0.0948, 0.0925, 0.0913, 0.0904, 0.0904, 0.0899] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1793", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_27", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B12", + "sample identifier": "Plate1 B12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0404, 0.0403, 0.0401, 0.04, 0.0399, 0.0397, 0.0397, 0.0395, 0.0395, 0.0393, 0.0392, 0.0391, 0.039, 0.039, 0.0388, 0.0387, 0.0384, 0.0384, 0.0382, 0.0382, 0.0382] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2049", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_28", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B13", + "sample identifier": "Plate1 B13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0959, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1366, 0.138, 0.1385, 0.1383, 0.1391, 0.1388, 0.1385, 0.1386, 0.1384, 0.1376, 0.1367, 0.1356, 0.1347, 0.1345, 0.1338, 0.1333, 0.1311, 0.1298, 0.1273, 0.1254, 0.1241] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2305", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_29", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B14", + "sample identifier": "Plate1 B14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0956, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0446, 0.0445, 0.0443, 0.0443, 0.044, 0.0439, 0.0439, 0.0438, 0.0436, 0.0434, 0.0434, 0.0434, 0.0432, 0.0431, 0.043, 0.0428, 0.0425, 0.0425, 0.0422, 0.0421, 0.0422] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2561", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_30", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B15", + "sample identifier": "Plate1 B15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0967, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1003, 0.1009, 0.1015, 0.1007, 0.1005, 0.1016, 0.1012, 0.1003, 0.1009, 0.1006, 0.1008, 0.1012, 0.1006, 0.101, 0.1015, 0.1008, 0.1018, 0.1025, 0.1028, 0.1031, 0.1036] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2817", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_31", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "B16", + "sample identifier": "Plate1 B16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0507, 0.0507, 0.0506, 0.0505, 0.0504, 0.05, 0.05, 0.0499, 0.05, 0.0497, 0.0495, 0.0495, 0.0495, 0.0492, 0.0491, 0.0489, 0.0487, 0.0486, 0.0484, 0.0486, 0.0484] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3073", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_32", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C1", + "sample identifier": "Plate1 C1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3329", - "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1515, 0.1567, 0.1574, 0.157, 0.1543, 0.1571, 0.1601, 0.1608, 0.1597, 0.1601, 0.1602, 0.1587, 0.156, 0.1525, 0.1494, 0.1467, 0.1425, 0.1392, 0.1358, 0.1326, 0.1287] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3585", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_33", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C2", + "sample identifier": "Plate1 C2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3841", - "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1587, 0.1588, 0.1589, 0.1601, 0.1595, 0.159, 0.1599, 0.1595, 0.1586, 0.1585, 0.158, 0.1567, 0.1551, 0.1528, 0.1504, 0.1485, 0.1454, 0.1415, 0.138, 0.1345, 0.1309] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4097", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_34", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C3", + "sample identifier": "Plate1 C3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1021, 0.1027, 0.1033, 0.1049, 0.1069, 0.1082, 0.1084, 0.1079, 0.1072, 0.106, 0.1049, 0.105, 0.1049, 0.105, 0.1061, 0.1071, 0.1073, 0.1077, 0.1076, 0.1076, 0.1073] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4353", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_35", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C4", + "sample identifier": "Plate1 C4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1004, 0.1013, 0.1018, 0.1021, 0.102, 0.104, 0.1062, 0.1066, 0.1062, 0.1062, 0.1058, 0.1058, 0.1051, 0.1048, 0.1047, 0.1054, 0.1059, 0.1062, 0.1064, 0.1076, 0.1076] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4609", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_36", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C5", + "sample identifier": "Plate1 C5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1044, 0.1055, 0.1064, 0.1084, 0.1092, 0.1092, 0.1095, 0.1089, 0.1079, 0.1077, 0.1077, 0.108, 0.1074, 0.1074, 0.1074, 0.1073, 0.1072, 0.107, 0.1067, 0.1063, 0.1057] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4865", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_37", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C6", + "sample identifier": "Plate1 C6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1046, 0.1055, 0.1066, 0.108, 0.1078, 0.1078, 0.1073, 0.108, 0.1086, 0.1078, 0.1072, 0.1069, 0.107, 0.1073, 0.1075, 0.1078, 0.1077, 0.1075, 0.1072, 0.1067, 0.1063] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5121", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_38", "sample document": { - "sample identifier": "Plate1 A2", - "location identifier": "A2", + "location identifier": "C7", + "sample identifier": "Plate1 C7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1129, 0.1125, 0.1126, 0.1147, 0.1152, 0.1153, 0.1154, 0.1156, 0.1167, 0.1169, 0.1176, 0.1178, 0.1175, 0.1174, 0.1154, 0.1166, 0.1183, 0.1186, 0.1176, 0.1171, 0.1168] + ] + } } } ], @@ -1209,7 +2532,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 555.0, + "value": 559.0, "unit": "nm" } } @@ -1222,587 +2545,1346 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_39", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C8", + "sample identifier": "Plate1 C8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0967, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1067, 0.1065, 0.1062, 0.1077, 0.1089, 0.1093, 0.1092, 0.1101, 0.1106, 0.1107, 0.1112, 0.1103, 0.11, 0.1104, 0.1107, 0.1111, 0.1104, 0.1096, 0.1095, 0.1094, 0.1095] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_258", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_40", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C9", + "sample identifier": "Plate1 C9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1627, 0.1642, 0.1655, 0.1659, 0.167, 0.1679, 0.1675, 0.1665, 0.165, 0.1636, 0.1618, 0.1587, 0.1551, 0.1514, 0.147, 0.1431, 0.1393, 0.136, 0.1322, 0.1296, 0.1262] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_514", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_41", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C10", + "sample identifier": "Plate1 C10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1738, 0.1754, 0.1758, 0.1766, 0.1771, 0.1775, 0.1773, 0.1766, 0.1754, 0.174, 0.1717, 0.1686, 0.1648, 0.1602, 0.1553, 0.1505, 0.1465, 0.143, 0.1396, 0.1367, 0.1335] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_770", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_42", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C11", + "sample identifier": "Plate1 C11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1078, 0.1083, 0.1086, 0.1082, 0.109, 0.111, 0.1123, 0.1134, 0.114, 0.1126, 0.1135, 0.1133, 0.114, 0.1153, 0.1174, 0.1186, 0.1187, 0.117, 0.1154, 0.1135, 0.1121] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1026", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_43", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C12", + "sample identifier": "Plate1 C12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0935, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1154, 0.1155, 0.1155, 0.1144, 0.1163, 0.1184, 0.1195, 0.1204, 0.1218, 0.1215, 0.121, 0.1209, 0.1204, 0.1197, 0.119, 0.1187, 0.1187, 0.1178, 0.1178, 0.1165, 0.1159] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1282", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_44", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C13", + "sample identifier": "Plate1 C13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0915, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1091, 0.1111, 0.1115, 0.11, 0.11, 0.11, 0.1097, 0.1081, 0.1098, 0.1104, 0.1108, 0.1109, 0.1108, 0.1108, 0.1111, 0.1119, 0.1102, 0.1102, 0.1093, 0.1085, 0.1081] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1538", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_45", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C14", + "sample identifier": "Plate1 C14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1017, 0.1027, 0.1022, 0.1031, 0.1039, 0.1041, 0.1052, 0.1065, 0.1066, 0.1073, 0.106, 0.1053, 0.105, 0.1039, 0.1039, 0.1044, 0.1045, 0.1045, 0.1037, 0.1037, 0.103] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1794", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_46", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C15", + "sample identifier": "Plate1 C15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0889, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1039, 0.1044, 0.1049, 0.1052, 0.1053, 0.1054, 0.1056, 0.1055, 0.1052, 0.1049, 0.1042, 0.1031, 0.1016, 0.1, 0.0986, 0.0968, 0.0953, 0.0932, 0.0912, 0.089, 0.0868] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2050", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_47", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "C16", + "sample identifier": "Plate1 C16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0901, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1412, 0.1422, 0.1432, 0.1444, 0.1449, 0.1453, 0.1449, 0.1431, 0.1405, 0.1386, 0.1362, 0.1333, 0.1312, 0.1286, 0.1263, 0.1239, 0.1218, 0.1198, 0.1178, 0.1157, 0.1131] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2306", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_48", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D1", + "sample identifier": "Plate1 D1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1667, 0.164, 0.1621, 0.1609, 0.1615, 0.1641, 0.1658, 0.1662, 0.1664, 0.166, 0.1655, 0.1644, 0.1623, 0.1584, 0.1538, 0.1494, 0.1439, 0.1397, 0.1357, 0.1319, 0.1283] + ] + } } - }, - { + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2562", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_49", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D2", + "sample identifier": "Plate1 D2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0919, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0442, 0.0439, 0.0437, 0.0439, 0.0438, 0.0437, 0.0437, 0.0437, 0.0437, 0.0432, 0.0434, 0.0434, 0.0432, 0.0433, 0.0432, 0.0433, 0.0433, 0.0433, 0.0432, 0.0432, 0.0431] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2818", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_50", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D3", + "sample identifier": "Plate1 D3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0935, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1025, 0.1036, 0.1036, 0.1029, 0.1038, 0.1051, 0.107, 0.1084, 0.1092, 0.109, 0.1083, 0.1084, 0.1072, 0.1065, 0.1061, 0.1065, 0.1064, 0.107, 0.1078, 0.108, 0.108] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3074", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_51", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D4", + "sample identifier": "Plate1 D4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0446, 0.0444, 0.0442, 0.0444, 0.0443, 0.0442, 0.0442, 0.0442, 0.0441, 0.0438, 0.0438, 0.0438, 0.0437, 0.0438, 0.0437, 0.0439, 0.0438, 0.0437, 0.0437, 0.0436, 0.0436] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3330", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_52", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D5", + "sample identifier": "Plate1 D5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0938, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1067, 0.1077, 0.1084, 0.1088, 0.1097, 0.11, 0.1104, 0.1109, 0.1109, 0.1104, 0.1095, 0.1091, 0.1084, 0.1076, 0.1067, 0.1062, 0.1057, 0.1056, 0.1061, 0.1057, 0.1052] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3586", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_53", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D6", + "sample identifier": "Plate1 D6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0455, 0.0453, 0.045, 0.0452, 0.0451, 0.0449, 0.0449, 0.0448, 0.0447, 0.0445, 0.0444, 0.0443, 0.0442, 0.0442, 0.0441, 0.0441, 0.0441, 0.0439, 0.0439, 0.0437, 0.0435] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3842", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_54", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D7", + "sample identifier": "Plate1 D7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1113, 0.1123, 0.112, 0.1135, 0.1155, 0.1163, 0.1171, 0.1173, 0.1178, 0.1176, 0.1168, 0.1156, 0.1146, 0.114, 0.1136, 0.1133, 0.1133, 0.1139, 0.1144, 0.1147, 0.1148] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4098", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_55", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D8", + "sample identifier": "Plate1 D8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0463, 0.046, 0.0459, 0.046, 0.0459, 0.0456, 0.0456, 0.0456, 0.0454, 0.0452, 0.0452, 0.045, 0.0449, 0.0448, 0.0448, 0.045, 0.0449, 0.0446, 0.0447, 0.0441, 0.0442] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4354", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_56", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D9", + "sample identifier": "Plate1 D9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1742, 0.1773, 0.1794, 0.1795, 0.179, 0.1772, 0.1763, 0.1758, 0.1732, 0.1727, 0.1706, 0.169, 0.1681, 0.1644, 0.1634, 0.1583, 0.1557, 0.151, 0.1481, 0.1428, 0.1404] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4610", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_57", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D10", + "sample identifier": "Plate1 D10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0977, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.045, 0.0447, 0.0445, 0.0447, 0.0446, 0.0444, 0.0445, 0.0444, 0.0443, 0.044, 0.044, 0.0439, 0.0438, 0.0438, 0.0437, 0.0437, 0.0437, 0.0436, 0.0436, 0.0434, 0.0434] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4866", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_58", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D11", + "sample identifier": "Plate1 D11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0991, 0.0993, 0.1009, 0.102, 0.1028, 0.1034, 0.1046, 0.1072, 0.1083, 0.1091, 0.1105, 0.1121, 0.1128, 0.1134, 0.1141, 0.1148, 0.1158, 0.1156, 0.1147, 0.1138, 0.1124] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5122", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_59", "sample document": { - "sample identifier": "Plate1 A3", - "location identifier": "A3", + "location identifier": "D12", + "sample identifier": "Plate1 D12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0448, 0.0447, 0.0445, 0.0446, 0.0446, 0.0444, 0.0444, 0.0443, 0.0443, 0.0441, 0.044, 0.044, 0.0439, 0.0439, 0.0439, 0.0438, 0.0437, 0.0436, 0.0436, 0.0437, 0.0436] + ] + } } } ], @@ -1815,7 +3897,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 563.0, + "value": 525.0, "unit": "nm" } } @@ -1828,587 +3910,1346 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_60", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "D13", + "sample identifier": "Plate1 D13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1058, 0.1055, 0.1066, 0.1071, 0.1063, 0.1063, 0.1063, 0.1073, 0.1078, 0.109, 0.1096, 0.11, 0.1104, 0.1105, 0.1109, 0.1125, 0.1113, 0.1103, 0.1092, 0.1077, 0.106] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_259", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_61", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "D14", + "sample identifier": "Plate1 D14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0431, 0.0429, 0.0428, 0.0429, 0.0429, 0.0427, 0.0427, 0.0427, 0.0426, 0.0424, 0.0423, 0.0423, 0.0423, 0.0422, 0.0422, 0.0424, 0.0422, 0.0421, 0.0421, 0.0421, 0.042] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_515", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_62", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "D15", + "sample identifier": "Plate1 D15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.104, 0.1048, 0.105, 0.1055, 0.105, 0.1047, 0.1039, 0.1028, 0.1015, 0.1006, 0.0998, 0.099, 0.0981, 0.0969, 0.0955, 0.0938, 0.092, 0.09, 0.0878, 0.086, 0.0839] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_771", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_63", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "D16", + "sample identifier": "Plate1 D16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0571, 0.0571, 0.0569, 0.057, 0.057, 0.0567, 0.0568, 0.0567, 0.0567, 0.0564, 0.0562, 0.0562, 0.0563, 0.0561, 0.0561, 0.056, 0.056, 0.0559, 0.0559, 0.0558, 0.0558] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1027", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_64", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E1", + "sample identifier": "Plate1 E1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0967, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1718, 0.174, 0.1773, 0.179, 0.1799, 0.1791, 0.1781, 0.1771, 0.1761, 0.1766, 0.1758, 0.1741, 0.1715, 0.1679, 0.1644, 0.1618, 0.1578, 0.1546, 0.1512, 0.148, 0.1442] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1283", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_65", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E2", + "sample identifier": "Plate1 E2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.165, 0.1659, 0.1662, 0.1664, 0.1669, 0.1664, 0.1654, 0.1634, 0.1614, 0.161, 0.1601, 0.1588, 0.157, 0.1543, 0.1518, 0.1494, 0.1469, 0.1435, 0.1401, 0.1373, 0.1342] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1539", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_66", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E3", + "sample identifier": "Plate1 E3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0989, 0.0999, 0.1009, 0.1015, 0.1031, 0.1036, 0.1045, 0.1034, 0.1034, 0.1044, 0.1048, 0.1057, 0.1052, 0.1041, 0.1033, 0.1036, 0.104, 0.1044, 0.1051, 0.1047, 0.1039] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1795", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_67", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E4", + "sample identifier": "Plate1 E4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1023, 0.1029, 0.1024, 0.1024, 0.1017, 0.1016, 0.103, 0.1042, 0.1052, 0.1062, 0.1062, 0.1063, 0.1061, 0.1064, 0.1062, 0.1062, 0.105, 0.1043, 0.1042, 0.104, 0.1036] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2051", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_68", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E5", + "sample identifier": "Plate1 E5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1035, 0.1046, 0.1051, 0.1054, 0.1066, 0.1073, 0.1072, 0.1057, 0.1057, 0.1064, 0.1073, 0.1086, 0.1094, 0.1095, 0.1084, 0.1072, 0.1059, 0.1054, 0.1053, 0.1052, 0.1061] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2307", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_69", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E6", + "sample identifier": "Plate1 E6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1027, 0.1032, 0.1026, 0.1034, 0.1048, 0.1053, 0.1063, 0.1063, 0.1069, 0.1083, 0.1091, 0.1092, 0.1085, 0.1077, 0.1068, 0.1063, 0.1054, 0.1054, 0.1052, 0.1054, 0.1059] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2563", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_70", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E7", + "sample identifier": "Plate1 E7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.099, 0.0996, 0.1005, 0.1008, 0.1002, 0.101, 0.1014, 0.1033, 0.1039, 0.1043, 0.1049, 0.1055, 0.1063, 0.1063, 0.1061, 0.1061, 0.1055, 0.105, 0.1041, 0.1036, 0.1037] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2819", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_71", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E8", + "sample identifier": "Plate1 E8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.096, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1118, 0.1118, 0.1112, 0.1126, 0.1145, 0.1145, 0.1142, 0.1159, 0.1177, 0.1185, 0.1185, 0.1184, 0.1185, 0.118, 0.1178, 0.1174, 0.117, 0.1169, 0.1168, 0.1172, 0.117] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3075", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_72", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E9", + "sample identifier": "Plate1 E9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1108, 0.1119, 0.1124, 0.1119, 0.1124, 0.1113, 0.1118, 0.1127, 0.1138, 0.1152, 0.1159, 0.1158, 0.1154, 0.1155, 0.1163, 0.1159, 0.1172, 0.1172, 0.1179, 0.1173, 0.1169] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3331", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_73", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E10", + "sample identifier": "Plate1 E10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1056, 0.1066, 0.1061, 0.1054, 0.1068, 0.1073, 0.1086, 0.1085, 0.1102, 0.1113, 0.1125, 0.1123, 0.112, 0.112, 0.1115, 0.1107, 0.11, 0.1086, 0.1075, 0.1063, 0.1053] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3587", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_74", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E11", + "sample identifier": "Plate1 E11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1026, 0.1042, 0.1049, 0.1051, 0.1052, 0.1058, 0.1053, 0.1043, 0.1049, 0.1067, 0.1079, 0.1085, 0.1083, 0.1078, 0.1071, 0.1076, 0.1081, 0.1087, 0.1088, 0.1093, 0.1083] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3843", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_75", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E12", + "sample identifier": "Plate1 E12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1056, 0.1065, 0.1083, 0.1108, 0.1109, 0.1106, 0.1111, 0.1125, 0.113, 0.1136, 0.1138, 0.1139, 0.1134, 0.1117, 0.1108, 0.1098, 0.109, 0.1094, 0.1093, 0.1089, 0.1084] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4099", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_76", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E13", + "sample identifier": "Plate1 E13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1544, 0.1559, 0.1566, 0.1579, 0.1574, 0.1596, 0.1598, 0.1587, 0.157, 0.1563, 0.1549, 0.1531, 0.1522, 0.151, 0.1501, 0.1491, 0.1466, 0.1437, 0.1407, 0.1375, 0.1345] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4355", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_77", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E14", + "sample identifier": "Plate1 E14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0979, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1571, 0.1568, 0.1565, 0.1586, 0.1612, 0.1617, 0.1612, 0.16, 0.1583, 0.1573, 0.1556, 0.1536, 0.1514, 0.149, 0.1465, 0.1438, 0.141, 0.1387, 0.1359, 0.1332, 0.1304] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4611", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_78", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E15", + "sample identifier": "Plate1 E15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0481, 0.0479, 0.0477, 0.0477, 0.0478, 0.0476, 0.0476, 0.0474, 0.0474, 0.0477, 0.0476, 0.0477, 0.0476, 0.0477, 0.0477, 0.0478, 0.0474, 0.0475, 0.0474, 0.0472, 0.0471] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4867", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_79", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "E16", + "sample identifier": "Plate1 E16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0503, 0.0503, 0.0501, 0.0503, 0.0504, 0.05, 0.0499, 0.0499, 0.05, 0.0503, 0.05, 0.0502, 0.0502, 0.05, 0.05, 0.0499, 0.0497, 0.0499, 0.0497, 0.0497, 0.0496] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5123", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_80", "sample document": { - "sample identifier": "Plate1 A4", - "location identifier": "A4", + "location identifier": "F1", + "sample identifier": "Plate1 F1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0983, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1605, 0.1602, 0.1594, 0.1621, 0.162, 0.1635, 0.1649, 0.1652, 0.1645, 0.1638, 0.1626, 0.1607, 0.1588, 0.1563, 0.1532, 0.1499, 0.145, 0.1412, 0.1378, 0.135, 0.1327] + ] + } } } ], @@ -2421,7 +5262,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 527.0, + "value": 539.0, "unit": "nm" } } @@ -2434,587 +5275,1216 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_81", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F2", + "sample identifier": "Plate1 F2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_260", - "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0484, 0.048, 0.0478, 0.0478, 0.0479, 0.0477, 0.0476, 0.0475, 0.0475, 0.0476, 0.0476, 0.0476, 0.0475, 0.0476, 0.0474, 0.0474, 0.0472, 0.0472, 0.0471, 0.0469, 0.0469] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_516", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_82", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F3", + "sample identifier": "Plate1 F3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0976, 0.0988, 0.0991, 0.099, 0.0997, 0.1009, 0.1009, 0.1011, 0.1011, 0.1019, 0.1018, 0.1025, 0.1029, 0.1032, 0.1027, 0.1023, 0.1017, 0.101, 0.1008, 0.1011, 0.102] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_772", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_83", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F4", + "sample identifier": "Plate1 F4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0951, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0482, 0.048, 0.0477, 0.0479, 0.0479, 0.0478, 0.0477, 0.0477, 0.0476, 0.0479, 0.0479, 0.0478, 0.0478, 0.0478, 0.0479, 0.0479, 0.0477, 0.0476, 0.0476, 0.0476, 0.0475] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1028", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_84", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F5", + "sample identifier": "Plate1 F5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1003, 0.101, 0.1008, 0.1016, 0.103, 0.1031, 0.1037, 0.1042, 0.1047, 0.1052, 0.1055, 0.105, 0.1044, 0.1047, 0.1046, 0.104, 0.1038, 0.1045, 0.1047, 0.105, 0.105] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1284", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_85", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F6", + "sample identifier": "Plate1 F6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0493, 0.049, 0.0488, 0.0489, 0.0488, 0.0487, 0.0486, 0.0484, 0.0483, 0.0486, 0.0486, 0.0484, 0.0483, 0.0484, 0.0482, 0.0483, 0.048, 0.048, 0.0479, 0.0476, 0.0474] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1540", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_86", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F7", + "sample identifier": "Plate1 F7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1046, 0.1061, 0.1085, 0.1097, 0.1097, 0.109, 0.1093, 0.1104, 0.1118, 0.1129, 0.1131, 0.1125, 0.1122, 0.1119, 0.1111, 0.1107, 0.1108, 0.1104, 0.1107, 0.11, 0.1089] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1796", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_87", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F8", + "sample identifier": "Plate1 F8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0617, 0.0615, 0.0613, 0.0612, 0.0613, 0.0611, 0.061, 0.0609, 0.0609, 0.0611, 0.0609, 0.0611, 0.0609, 0.0609, 0.0608, 0.0607, 0.0605, 0.0606, 0.0603, 0.0604, 0.0602] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2052", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_88", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F9", + "sample identifier": "Plate1 F9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0995, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1094, 0.1106, 0.1115, 0.1107, 0.1107, 0.1102, 0.1115, 0.1103, 0.1088, 0.1102, 0.1107, 0.1123, 0.1134, 0.1121, 0.1122, 0.111, 0.1118, 0.1111, 0.1112, 0.1092, 0.1082] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2308", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_89", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F10", + "sample identifier": "Plate1 F10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0494, 0.0492, 0.0491, 0.0492, 0.0493, 0.0491, 0.0491, 0.049, 0.0488, 0.0492, 0.0492, 0.0493, 0.0492, 0.0492, 0.0492, 0.0491, 0.0491, 0.049, 0.0489, 0.0488, 0.0487] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2564", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_90", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F11", + "sample identifier": "Plate1 F11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1009, 0.1013, 0.1015, 0.1021, 0.1027, 0.1035, 0.104, 0.1035, 0.1038, 0.1051, 0.1054, 0.1056, 0.106, 0.1068, 0.1073, 0.1073, 0.108, 0.1076, 0.1077, 0.1066, 0.1051] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2820", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_91", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F12", + "sample identifier": "Plate1 F12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0497, 0.0495, 0.0493, 0.0494, 0.0494, 0.0493, 0.0492, 0.0491, 0.049, 0.0493, 0.0493, 0.0493, 0.0492, 0.0492, 0.0491, 0.049, 0.049, 0.0488, 0.0487, 0.0487, 0.0485] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3076", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_92", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F13", + "sample identifier": "Plate1 F13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1606, 0.162, 0.1616, 0.162, 0.1633, 0.1642, 0.1632, 0.1618, 0.1591, 0.1579, 0.1561, 0.1535, 0.1517, 0.1495, 0.1479, 0.1463, 0.144, 0.1414, 0.1392, 0.1362, 0.1333] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3332", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_93", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F14", + "sample identifier": "Plate1 F14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0483, 0.0481, 0.0479, 0.0479, 0.0481, 0.0479, 0.0479, 0.0478, 0.0478, 0.048, 0.048, 0.048, 0.048, 0.0481, 0.0479, 0.0479, 0.0478, 0.0477, 0.0476, 0.0475, 0.0474] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3588", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_94", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F15", + "sample identifier": "Plate1 F15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0489, 0.0486, 0.0484, 0.0486, 0.0486, 0.0484, 0.0484, 0.0483, 0.0482, 0.0484, 0.0484, 0.0485, 0.0483, 0.0484, 0.0483, 0.0483, 0.0481, 0.048, 0.048, 0.0478, 0.0477] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3844", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_95", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "F16", + "sample identifier": "Plate1 F16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0487, 0.0486, 0.0483, 0.0485, 0.0484, 0.0483, 0.0482, 0.0481, 0.048, 0.0484, 0.0483, 0.0483, 0.0481, 0.0482, 0.048, 0.0479, 0.0479, 0.0478, 0.0477, 0.0474, 0.0474] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4100", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_96", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "G1", + "sample identifier": "Plate1 G1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.169, 0.1721, 0.1699, 0.1705, 0.1718, 0.1694, 0.1659, 0.1648, 0.1646, 0.1644, 0.1637, 0.1619, 0.1601, 0.1573, 0.1544, 0.1516, 0.1477, 0.1449, 0.142, 0.1391, 0.1358] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4356", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_97", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "G2", + "sample identifier": "Plate1 G2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4612", - "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1698, 0.169, 0.1704, 0.175, 0.1752, 0.1731, 0.1697, 0.1673, 0.1667, 0.1683, 0.1684, 0.1673, 0.1661, 0.1637, 0.161, 0.1584, 0.1549, 0.1507, 0.1468, 0.1429, 0.1385] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4868", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_98", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "G3", + "sample identifier": "Plate1 G3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1292, 0.1297, 0.1304, 0.1321, 0.1315, 0.1324, 0.1329, 0.1325, 0.132, 0.1324, 0.1327, 0.132, 0.1311, 0.1297, 0.1285, 0.1277, 0.1262, 0.1253, 0.1241, 0.123, 0.1218] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5124", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_99", "sample document": { - "sample identifier": "Plate1 A5", - "location identifier": "A5", + "location identifier": "G4", + "sample identifier": "Plate1 G4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1309, 0.131, 0.1326, 0.1346, 0.134, 0.1326, 0.1314, 0.1312, 0.1317, 0.1327, 0.1336, 0.1336, 0.1337, 0.1325, 0.1318, 0.1309, 0.13, 0.129, 0.1276, 0.1267, 0.1254] + ] + } } } ], @@ -3027,7 +6497,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 553.0, + "value": 531.0, "unit": "nm" } } @@ -3040,587 +6510,1216 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_100", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G5", + "sample identifier": "Plate1 G5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1041, 0.1045, 0.1043, 0.1046, 0.1044, 0.1049, 0.1064, 0.1079, 0.1091, 0.1098, 0.1098, 0.1085, 0.1076, 0.1069, 0.1061, 0.106, 0.1061, 0.1059, 0.1063, 0.1063, 0.1067] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_261", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_101", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G6", + "sample identifier": "Plate1 G6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1033, 0.1036, 0.105, 0.1075, 0.1073, 0.1067, 0.1054, 0.1059, 0.1067, 0.1075, 0.1079, 0.1079, 0.1078, 0.1077, 0.1071, 0.1083, 0.109, 0.1094, 0.1094, 0.1091, 0.1089] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_517", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_102", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G7", + "sample identifier": "Plate1 G7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1696, 0.1706, 0.1707, 0.171, 0.1712, 0.1713, 0.1711, 0.1712, 0.1706, 0.1695, 0.1678, 0.1655, 0.163, 0.1595, 0.1559, 0.1521, 0.1483, 0.1446, 0.141, 0.1381, 0.1351] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_773", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_103", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G8", + "sample identifier": "Plate1 G8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1797, 0.1807, 0.1813, 0.1823, 0.1829, 0.1828, 0.183, 0.1828, 0.1824, 0.1818, 0.18, 0.1772, 0.174, 0.1699, 0.1656, 0.1612, 0.1575, 0.1545, 0.151, 0.1482, 0.1449] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1029", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_104", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G9", + "sample identifier": "Plate1 G9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0906, 0.0913, 0.0913, 0.0922, 0.0927, 0.0935, 0.0932, 0.0926, 0.092, 0.0921, 0.0927, 0.0939, 0.0947, 0.0955, 0.0966, 0.0972, 0.0978, 0.0974, 0.0975, 0.0973, 0.0983] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1285", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_105", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G10", + "sample identifier": "Plate1 G10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0981, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1039, 0.1052, 0.1053, 0.1046, 0.1039, 0.1048, 0.1056, 0.1055, 0.1059, 0.1061, 0.1058, 0.1054, 0.1052, 0.1045, 0.1032, 0.1019, 0.1021, 0.1023, 0.1027, 0.1033, 0.1038] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1541", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_106", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G11", + "sample identifier": "Plate1 G11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1067, 0.1077, 0.1082, 0.1091, 0.1095, 0.1088, 0.109, 0.1085, 0.1091, 0.111, 0.1128, 0.1128, 0.1123, 0.1122, 0.1125, 0.1126, 0.1125, 0.1117, 0.1109, 0.1103, 0.1093] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1797", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_107", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G12", + "sample identifier": "Plate1 G12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1063, 0.1079, 0.1086, 0.1091, 0.1097, 0.1097, 0.1107, 0.1116, 0.1115, 0.1119, 0.1119, 0.1117, 0.1112, 0.1113, 0.1107, 0.1103, 0.1097, 0.1088, 0.1078, 0.107, 0.1059] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2053", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_108", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G13", + "sample identifier": "Plate1 G13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1974, 0.197, 0.1976, 0.1995, 0.2004, 0.1999, 0.1975, 0.1949, 0.1921, 0.1906, 0.189, 0.1862, 0.1835, 0.1798, 0.1768, 0.1739, 0.1699, 0.1665, 0.1627, 0.1591, 0.1552] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2309", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_109", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G14", + "sample identifier": "Plate1 G14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1907, 0.1924, 0.1952, 0.1956, 0.1953, 0.1937, 0.1916, 0.1899, 0.1886, 0.1877, 0.1862, 0.1839, 0.1813, 0.1777, 0.174, 0.1698, 0.1657, 0.1617, 0.1574, 0.1535, 0.1491] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2565", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_110", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G15", + "sample identifier": "Plate1 G15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0473, 0.0471, 0.0469, 0.0469, 0.0468, 0.0467, 0.0466, 0.0466, 0.0464, 0.0463, 0.0463, 0.0462, 0.0462, 0.0462, 0.0461, 0.0459, 0.0459, 0.0457, 0.0456, 0.0456, 0.0455] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2821", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_111", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "G16", + "sample identifier": "Plate1 G16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0484, 0.0482, 0.048, 0.048, 0.0479, 0.0477, 0.0476, 0.0475, 0.0473, 0.0471, 0.0471, 0.047, 0.0469, 0.0469, 0.0467, 0.0465, 0.0464, 0.0463, 0.0461, 0.046, 0.0459] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3077", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_112", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H1", + "sample identifier": "Plate1 H1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1822, 0.1802, 0.1789, 0.1769, 0.1754, 0.1777, 0.1792, 0.1801, 0.1793, 0.1791, 0.1789, 0.177, 0.1734, 0.1689, 0.1641, 0.1591, 0.1538, 0.1497, 0.1457, 0.1417, 0.138] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3333", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_113", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H2", + "sample identifier": "Plate1 H2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3589", - "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0483, 0.048, 0.0477, 0.0476, 0.0474, 0.0473, 0.0471, 0.047, 0.0468, 0.0465, 0.0465, 0.0463, 0.0462, 0.0461, 0.0458, 0.0457, 0.0455, 0.0454, 0.0452, 0.045, 0.0449] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3845", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_114", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H3", + "sample identifier": "Plate1 H3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4101", - "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1338, 0.1331, 0.1334, 0.1347, 0.1357, 0.1362, 0.1372, 0.1377, 0.1372, 0.137, 0.1371, 0.137, 0.1371, 0.1362, 0.1351, 0.1333, 0.1322, 0.1305, 0.1288, 0.1269, 0.1257] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4357", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_115", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H4", + "sample identifier": "Plate1 H4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0472, 0.047, 0.0467, 0.0467, 0.0466, 0.0465, 0.0464, 0.0464, 0.0461, 0.046, 0.0459, 0.0459, 0.0458, 0.0458, 0.0456, 0.0455, 0.0454, 0.0454, 0.0453, 0.0452, 0.0451] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4613", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_116", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H5", + "sample identifier": "Plate1 H5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0977, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1051, 0.1066, 0.1072, 0.1076, 0.1084, 0.1087, 0.1088, 0.1095, 0.1097, 0.1104, 0.1103, 0.1102, 0.1104, 0.1099, 0.1084, 0.107, 0.1058, 0.1053, 0.1048, 0.1053, 0.1054] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4869", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_117", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H6", + "sample identifier": "Plate1 H6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0574, 0.0571, 0.0569, 0.0566, 0.0565, 0.0564, 0.0564, 0.0564, 0.0559, 0.0559, 0.0558, 0.0556, 0.0557, 0.0555, 0.0556, 0.0553, 0.0552, 0.0551, 0.055, 0.0548, 0.0546] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5125", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_118", "sample document": { - "sample identifier": "Plate1 A6", - "location identifier": "A6", + "location identifier": "H7", + "sample identifier": "Plate1 H7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1754, 0.177, 0.1771, 0.1779, 0.179, 0.1793, 0.1804, 0.1809, 0.1802, 0.179, 0.1765, 0.173, 0.1691, 0.1645, 0.1603, 0.1563, 0.1531, 0.1496, 0.1461, 0.1428, 0.1398] + ] + } } } ], @@ -3633,7 +7732,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 543.0, + "value": 539.0, "unit": "nm" } } @@ -3646,587 +7745,1346 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_6", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_119", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H8", + "sample identifier": "Plate1 H8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0592, 0.0592, 0.0588, 0.0589, 0.0587, 0.0586, 0.0585, 0.0584, 0.0583, 0.0581, 0.0579, 0.058, 0.058, 0.0581, 0.0577, 0.0574, 0.0572, 0.0575, 0.0569, 0.0574, 0.057] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_262", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_120", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H9", + "sample identifier": "Plate1 H9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1003, 0.1016, 0.1024, 0.1039, 0.1057, 0.1067, 0.1068, 0.1061, 0.1057, 0.106, 0.1072, 0.1079, 0.1075, 0.1072, 0.1062, 0.106, 0.1052, 0.1039, 0.1033, 0.1036, 0.1024] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_518", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_121", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H10", + "sample identifier": "Plate1 H10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0489, 0.0487, 0.0483, 0.0483, 0.0481, 0.048, 0.0479, 0.0478, 0.0474, 0.0473, 0.0473, 0.0471, 0.0471, 0.047, 0.0467, 0.0464, 0.0464, 0.0461, 0.046, 0.0458, 0.0458] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_774", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_122", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H11", + "sample identifier": "Plate1 H11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1061, 0.1071, 0.1081, 0.1096, 0.1107, 0.1106, 0.1104, 0.1118, 0.1128, 0.1129, 0.1142, 0.1148, 0.114, 0.1129, 0.112, 0.1107, 0.1098, 0.1093, 0.1088, 0.1086, 0.1084] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1030", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_123", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H12", + "sample identifier": "Plate1 H12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0486, 0.0483, 0.0481, 0.048, 0.0478, 0.0477, 0.0476, 0.0475, 0.0472, 0.0471, 0.047, 0.0469, 0.0469, 0.0468, 0.0466, 0.0465, 0.0463, 0.0461, 0.0459, 0.0459, 0.0458] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1286", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_124", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H13", + "sample identifier": "Plate1 H13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.2005, 0.1992, 0.1974, 0.196, 0.1944, 0.1935, 0.1917, 0.1909, 0.1884, 0.1869, 0.1848, 0.1812, 0.1782, 0.1743, 0.1711, 0.168, 0.1647, 0.1612, 0.1578, 0.1539, 0.1502] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1542", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_125", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H14", + "sample identifier": "Plate1 H14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0951, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0481, 0.0478, 0.0476, 0.0476, 0.0475, 0.0475, 0.0473, 0.0473, 0.0471, 0.0469, 0.047, 0.0469, 0.0469, 0.0468, 0.0467, 0.0465, 0.0465, 0.0463, 0.0462, 0.0462, 0.0461] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1798", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_126", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H15", + "sample identifier": "Plate1 H15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0491, 0.0488, 0.0486, 0.0486, 0.0485, 0.0484, 0.0483, 0.0483, 0.048, 0.0479, 0.0479, 0.0478, 0.0477, 0.0478, 0.0475, 0.0475, 0.0473, 0.0473, 0.0471, 0.0471, 0.047] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2054", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_127", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "H16", + "sample identifier": "Plate1 H16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.048, 0.0478, 0.0476, 0.0475, 0.0474, 0.0473, 0.0471, 0.047, 0.0468, 0.0466, 0.0465, 0.0465, 0.0464, 0.0463, 0.0462, 0.0459, 0.0458, 0.0457, 0.0455, 0.0454, 0.0453] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2310", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_128", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I1", + "sample identifier": "Plate1 I1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0975, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1786, 0.1745, 0.1758, 0.1765, 0.176, 0.1742, 0.1717, 0.17, 0.1687, 0.1673, 0.166, 0.1639, 0.1599, 0.1551, 0.151, 0.1479, 0.1438, 0.1408, 0.1379, 0.1348, 0.1314] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2566", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_129", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I2", + "sample identifier": "Plate1 I2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1728, 0.1732, 0.173, 0.1732, 0.1737, 0.1748, 0.1745, 0.173, 0.1706, 0.1679, 0.1644, 0.1611, 0.1591, 0.1562, 0.1539, 0.1514, 0.1484, 0.1447, 0.141, 0.1373, 0.1332] + ] + } } - }, - { + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2822", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_130", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I3", + "sample identifier": "Plate1 I3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0978, 0.0977, 0.0977, 0.0984, 0.0992, 0.1005, 0.102, 0.1032, 0.1034, 0.1036, 0.104, 0.1042, 0.104, 0.1037, 0.1034, 0.1031, 0.1023, 0.102, 0.1018, 0.1022, 0.1022] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3078", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_131", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I4", + "sample identifier": "Plate1 I4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1029, 0.1035, 0.1035, 0.1034, 0.1042, 0.1048, 0.1051, 0.1045, 0.1039, 0.1037, 0.104, 0.1042, 0.1041, 0.104, 0.104, 0.1047, 0.1049, 0.1044, 0.1035, 0.1028, 0.1021] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3334", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_132", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I5", + "sample identifier": "Plate1 I5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1024, 0.1027, 0.1027, 0.1023, 0.1017, 0.102, 0.1018, 0.102, 0.1023, 0.1026, 0.1035, 0.1034, 0.1035, 0.1039, 0.1035, 0.1036, 0.1031, 0.1031, 0.1022, 0.1021, 0.101] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3590", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_133", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I6", + "sample identifier": "Plate1 I6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.104, 0.1053, 0.1056, 0.1047, 0.1048, 0.105, 0.1057, 0.1068, 0.107, 0.1058, 0.1065, 0.1073, 0.1074, 0.1076, 0.1082, 0.1079, 0.1071, 0.1065, 0.1057, 0.1052, 0.1045] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3846", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_134", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I7", + "sample identifier": "Plate1 I7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1231, 0.1244, 0.125, 0.1251, 0.1248, 0.1249, 0.125, 0.1249, 0.1254, 0.1257, 0.1255, 0.1255, 0.125, 0.1244, 0.1237, 0.1237, 0.1237, 0.1234, 0.1225, 0.1221, 0.1207] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4102", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_135", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I8", + "sample identifier": "Plate1 I8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1293, 0.1305, 0.1305, 0.1305, 0.1305, 0.1307, 0.1304, 0.1307, 0.1311, 0.1308, 0.1305, 0.1297, 0.1292, 0.1292, 0.1287, 0.128, 0.1274, 0.1269, 0.1269, 0.1256, 0.1246] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4358", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_136", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I9", + "sample identifier": "Plate1 I9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1009, 0.1022, 0.1031, 0.1043, 0.1026, 0.101, 0.1002, 0.1, 0.1008, 0.1011, 0.102, 0.1021, 0.1023, 0.1026, 0.1024, 0.1029, 0.1036, 0.104, 0.1041, 0.1046, 0.1046] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4614", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_137", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I10", + "sample identifier": "Plate1 I10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0932, 0.0937, 0.0933, 0.0928, 0.0919, 0.0931, 0.0949, 0.096, 0.097, 0.0971, 0.0981, 0.0987, 0.0987, 0.0994, 0.1002, 0.1006, 0.1007, 0.101, 0.1013, 0.1015, 0.1015] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4870", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_138", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I11", + "sample identifier": "Plate1 I11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1033, 0.1038, 0.1051, 0.1074, 0.1087, 0.1099, 0.1113, 0.1115, 0.1103, 0.1089, 0.1089, 0.1089, 0.1094, 0.1093, 0.1091, 0.1093, 0.1094, 0.1098, 0.1097, 0.1092, 0.1086] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5126", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_139", "sample document": { - "sample identifier": "Plate1 A7", - "location identifier": "A7", + "location identifier": "I12", + "sample identifier": "Plate1 I12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1072, 0.1075, 0.1079, 0.1089, 0.1095, 0.1108, 0.1104, 0.1082, 0.1072, 0.1074, 0.1077, 0.1087, 0.1097, 0.1101, 0.1107, 0.1111, 0.111, 0.1097, 0.1099, 0.1096, 0.1093] + ] + } } } ], @@ -4239,7 +9097,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 545.0, + "value": 555.0, "unit": "nm" } } @@ -4252,587 +9110,1346 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_7", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_140", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "I13", + "sample identifier": "Plate1 I13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1156, 0.1148, 0.1151, 0.1158, 0.1154, 0.1158, 0.1178, 0.1184, 0.1187, 0.1192, 0.1194, 0.1196, 0.1195, 0.1192, 0.1195, 0.1201, 0.1185, 0.1185, 0.1183, 0.1176, 0.1172] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_263", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_141", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "I14", + "sample identifier": "Plate1 I14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1099, 0.1103, 0.1111, 0.1101, 0.1098, 0.1106, 0.1113, 0.1116, 0.1111, 0.1114, 0.1115, 0.1117, 0.1121, 0.1114, 0.1111, 0.1112, 0.1116, 0.1117, 0.1114, 0.1106, 0.1107] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_519", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_142", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "I15", + "sample identifier": "Plate1 I15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0507, 0.0507, 0.0503, 0.0506, 0.0501, 0.0501, 0.0501, 0.05, 0.0499, 0.0499, 0.0498, 0.0496, 0.0495, 0.0494, 0.0493, 0.0492, 0.049, 0.0488, 0.0489, 0.0488, 0.0487] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_775", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_143", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "I16", + "sample identifier": "Plate1 I16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0523, 0.0522, 0.052, 0.0521, 0.0519, 0.0517, 0.0515, 0.0514, 0.0517, 0.0515, 0.0512, 0.0512, 0.0514, 0.0509, 0.0509, 0.0507, 0.0507, 0.0506, 0.0505, 0.0505, 0.0505] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1031", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_144", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J1", + "sample identifier": "Plate1 J1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1724, 0.1715, 0.1727, 0.1747, 0.1757, 0.1736, 0.1686, 0.1678, 0.1696, 0.17, 0.1689, 0.1664, 0.1637, 0.1592, 0.1542, 0.1499, 0.1449, 0.1416, 0.1387, 0.1363, 0.1336] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1287", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_145", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J2", + "sample identifier": "Plate1 J2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0487, 0.0484, 0.0481, 0.048, 0.0477, 0.0476, 0.0473, 0.0472, 0.0472, 0.047, 0.0469, 0.0467, 0.0466, 0.0463, 0.0462, 0.0462, 0.046, 0.0457, 0.0456, 0.0453, 0.0452] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1543", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_146", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J3", + "sample identifier": "Plate1 J3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0954, 0.0969, 0.0973, 0.0974, 0.0982, 0.099, 0.1002, 0.1013, 0.102, 0.1025, 0.1024, 0.1019, 0.1011, 0.1004, 0.1003, 0.1004, 0.1009, 0.1006, 0.1005, 0.1007, 0.1002] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1799", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_147", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J4", + "sample identifier": "Plate1 J4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.048, 0.0478, 0.0476, 0.0475, 0.0473, 0.0472, 0.0471, 0.047, 0.0471, 0.047, 0.047, 0.0468, 0.0467, 0.0467, 0.0465, 0.0465, 0.0463, 0.0464, 0.0461, 0.0461, 0.0459] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2055", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_148", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J5", + "sample identifier": "Plate1 J5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1045, 0.1057, 0.1056, 0.1067, 0.1072, 0.1084, 0.1086, 0.1088, 0.1091, 0.1095, 0.11, 0.1104, 0.1104, 0.1104, 0.1101, 0.1101, 0.1096, 0.1095, 0.109, 0.1091, 0.1081] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2311", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_149", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J6", + "sample identifier": "Plate1 J6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0479, 0.0477, 0.0474, 0.0473, 0.0471, 0.047, 0.0467, 0.0466, 0.0467, 0.0466, 0.0465, 0.0463, 0.0462, 0.0461, 0.046, 0.0459, 0.0456, 0.0456, 0.0453, 0.0453, 0.0452] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2567", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_150", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J7", + "sample identifier": "Plate1 J7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1222, 0.1231, 0.1237, 0.1252, 0.125, 0.1245, 0.1246, 0.1248, 0.1249, 0.1251, 0.1255, 0.1249, 0.1241, 0.1238, 0.1222, 0.1223, 0.1228, 0.1224, 0.1209, 0.1214, 0.1195] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2823", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_151", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J8", + "sample identifier": "Plate1 J8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0605, 0.0601, 0.06, 0.06, 0.0596, 0.0596, 0.0593, 0.0592, 0.0592, 0.0592, 0.0592, 0.0589, 0.0588, 0.0586, 0.0585, 0.0584, 0.0583, 0.0579, 0.058, 0.0576, 0.0575] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3079", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_152", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J9", + "sample identifier": "Plate1 J9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0984, 0.0993, 0.0996, 0.1003, 0.0999, 0.0998, 0.1001, 0.1001, 0.1007, 0.1003, 0.101, 0.1018, 0.1019, 0.1026, 0.1028, 0.1043, 0.1048, 0.1044, 0.1038, 0.1044, 0.1044] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3335", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_153", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J10", + "sample identifier": "Plate1 J10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0957, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0495, 0.0493, 0.049, 0.0489, 0.0487, 0.0485, 0.0483, 0.0481, 0.0482, 0.0481, 0.0479, 0.0477, 0.0475, 0.0474, 0.0472, 0.0471, 0.0469, 0.0468, 0.0465, 0.0464, 0.0462] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3591", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_154", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J11", + "sample identifier": "Plate1 J11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1063, 0.1072, 0.1086, 0.1095, 0.1094, 0.1078, 0.1075, 0.1066, 0.1065, 0.1074, 0.1068, 0.1065, 0.1074, 0.1076, 0.1079, 0.1091, 0.1091, 0.1094, 0.1094, 0.1088, 0.1088] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3847", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_155", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J12", + "sample identifier": "Plate1 J12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0493, 0.049, 0.0487, 0.0488, 0.0484, 0.0484, 0.0482, 0.0481, 0.0481, 0.0481, 0.048, 0.0477, 0.0477, 0.0475, 0.0473, 0.0473, 0.0471, 0.047, 0.0468, 0.0467, 0.0464] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4103", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_156", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J13", + "sample identifier": "Plate1 J13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0951, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1168, 0.1171, 0.1148, 0.1172, 0.1182, 0.1187, 0.1198, 0.1202, 0.1191, 0.1188, 0.118, 0.1176, 0.1172, 0.1172, 0.1172, 0.1175, 0.1174, 0.1171, 0.1167, 0.1165, 0.1162] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4359", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_157", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J14", + "sample identifier": "Plate1 J14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0486, 0.0485, 0.0481, 0.0482, 0.048, 0.0479, 0.0477, 0.0477, 0.0477, 0.0476, 0.0476, 0.0475, 0.0474, 0.0472, 0.0472, 0.0471, 0.0469, 0.0469, 0.0468, 0.0467, 0.0465] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4615", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_158", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J15", + "sample identifier": "Plate1 J15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0956, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.049, 0.0487, 0.0486, 0.0486, 0.0483, 0.0482, 0.0481, 0.048, 0.048, 0.048, 0.048, 0.0478, 0.0477, 0.0475, 0.0475, 0.0475, 0.0473, 0.0471, 0.047, 0.0469, 0.0468] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4871", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_159", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "J16", + "sample identifier": "Plate1 J16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0961, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0511, 0.0511, 0.0509, 0.0509, 0.0507, 0.0505, 0.0504, 0.0504, 0.0507, 0.0504, 0.0501, 0.0501, 0.0503, 0.0499, 0.0499, 0.0497, 0.0495, 0.0495, 0.0496, 0.0494, 0.0494] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5127", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_160", "sample document": { - "sample identifier": "Plate1 A8", - "location identifier": "A8", + "location identifier": "K1", + "sample identifier": "Plate1 K1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1358, 0.1357, 0.1362, 0.1366, 0.1377, 0.1376, 0.1368, 0.1365, 0.1358, 0.137, 0.1368, 0.1357, 0.135, 0.1342, 0.1335, 0.1331, 0.1313, 0.1307, 0.1301, 0.129, 0.127] + ] + } } } ], @@ -4845,7 +10462,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 545.0, + "value": 533.0, "unit": "nm" } } @@ -4858,587 +10475,631 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_8", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_161", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K2", + "sample identifier": "Plate1 K2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1404, 0.1391, 0.1393, 0.1399, 0.141, 0.1422, 0.1431, 0.1443, 0.1464, 0.1469, 0.1458, 0.1446, 0.1436, 0.1424, 0.1412, 0.1404, 0.1386, 0.1362, 0.1345, 0.1326, 0.131] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_264", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_162", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K3", + "sample identifier": "Plate1 K3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_520", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.094, 0.0946, 0.0955, 0.0964, 0.097, 0.0975, 0.098, 0.0988, 0.0988, 0.0994, 0.1001, 0.1006, 0.1013, 0.1019, 0.1023, 0.1022, 0.1019, 0.1015, 0.1015, 0.1016, 0.102] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_776", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_163", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K4", + "sample identifier": "Plate1 K4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1032", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0968, 0.0979, 0.0985, 0.0993, 0.0994, 0.0993, 0.0996, 0.1013, 0.1019, 0.1013, 0.1001, 0.0988, 0.098, 0.0989, 0.0996, 0.1001, 0.1009, 0.1018, 0.1023, 0.1018, 0.1014] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1288", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_164", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K5", + "sample identifier": "Plate1 K5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1544", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0964, 0.0964, 0.0962, 0.0962, 0.0953, 0.0947, 0.0949, 0.0957, 0.0972, 0.097, 0.0968, 0.0973, 0.0973, 0.0975, 0.0971, 0.0969, 0.0976, 0.0978, 0.0985, 0.0993, 0.0996] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1800", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_165", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K6", + "sample identifier": "Plate1 K6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2056", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2312", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0956, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2568", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.101, 0.1016, 0.1024, 0.1029, 0.1038, 0.1049, 0.1049, 0.1044, 0.1039, 0.1042, 0.1045, 0.1057, 0.1064, 0.1061, 0.1066, 0.1065, 0.1056, 0.105, 0.1048, 0.105, 0.1053] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2824", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_166", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K7", + "sample identifier": "Plate1 K7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3080", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.117, 0.118, 0.1192, 0.1212, 0.121, 0.1197, 0.1187, 0.1184, 0.1188, 0.1186, 0.1189, 0.1188, 0.1183, 0.1181, 0.1167, 0.1164, 0.116, 0.1155, 0.114, 0.1139, 0.1124] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3336", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_167", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K8", + "sample identifier": "Plate1 K8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3592", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0945, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1179, 0.1189, 0.1193, 0.1195, 0.1191, 0.1188, 0.1194, 0.119, 0.1191, 0.1198, 0.1198, 0.1194, 0.1188, 0.1181, 0.1181, 0.1175, 0.1167, 0.1164, 0.1165, 0.1155, 0.115] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3848", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_168", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K9", + "sample identifier": "Plate1 K9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4104", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0939, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0969, 0.0982, 0.0995, 0.1005, 0.1027, 0.1047, 0.1059, 0.1061, 0.106, 0.1057, 0.106, 0.106, 0.1057, 0.1053, 0.1055, 0.1044, 0.1043, 0.104, 0.1037, 0.1033, 0.1028] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4360", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_169", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K10", + "sample identifier": "Plate1 K10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4616", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.107, 0.1073, 0.1075, 0.1084, 0.1083, 0.1077, 0.1078, 0.1077, 0.1064, 0.1052, 0.1042, 0.1031, 0.1034, 0.1047, 0.106, 0.1072, 0.1081, 0.1087, 0.1094, 0.1091, 0.1087] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4872", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_170", "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", + "location identifier": "K11", + "sample identifier": "Plate1 K11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.093, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5128", - "sample document": { - "sample identifier": "Plate1 A9", - "location identifier": "A9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0923, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1059, 0.1062, 0.1048, 0.1042, 0.1045, 0.1059, 0.1066, 0.1075, 0.1077, 0.1078, 0.1074, 0.1071, 0.1052, 0.1044, 0.1045, 0.1046, 0.1033, 0.1032, 0.1031, 0.1025, 0.1016] + ] + } } } ], @@ -5451,7 +11112,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 531.0, + "value": 543.0, "unit": "nm" } } @@ -5464,587 +11125,176 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_9", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_171", "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", + "location identifier": "K12", + "sample identifier": "Plate1 K12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_265", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0946, 0.0969, 0.0985, 0.1001, 0.1007, 0.1004, 0.1004, 0.0998, 0.0992, 0.0996, 0.1007, 0.1019, 0.1036, 0.1039, 0.1042, 0.1046, 0.1051, 0.1055, 0.1055, 0.1049, 0.1046] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_521", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_172", "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", + "location identifier": "K13", + "sample identifier": "Plate1 K13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1894, 0.1925, 0.1933, 0.1956, 0.1967, 0.1978, 0.1969, 0.1961, 0.1934, 0.1912, 0.188, 0.1837, 0.1804, 0.1757, 0.1724, 0.1691, 0.1654, 0.1614, 0.1578, 0.1535, 0.1498] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_777", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_173", "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", + "location identifier": "K14", + "sample identifier": "Plate1 K14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1033", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1289", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1545", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0988, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1801", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2057", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2313", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2569", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0977, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2825", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3081", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0995, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3337", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3593", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3849", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4105", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4361", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4617", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4873", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5129", - "sample document": { - "sample identifier": "Plate1 A10", - "location identifier": "A10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1937, 0.1944, 0.1965, 0.1974, 0.1975, 0.1972, 0.1954, 0.1932, 0.1902, 0.1867, 0.183, 0.1789, 0.1755, 0.1713, 0.1677, 0.1638, 0.16, 0.1566, 0.1528, 0.149, 0.1452] + ] + } } } ], @@ -6061,146642 +11311,55 @@ "unit": "nm" } } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_10", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_266", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_522", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_778", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1034", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1290", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1546", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1802", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2058", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0999, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2314", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2570", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2826", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3082", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3338", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3594", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3850", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4106", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4362", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4618", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4874", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5130", - "sample document": { - "sample identifier": "Plate1 A11", - "location identifier": "A11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_11", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_267", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_523", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_779", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1035", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1291", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1547", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1803", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2059", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2315", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1133, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2571", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2827", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3083", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3339", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3595", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3851", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4107", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4363", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4619", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4875", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5131", - "sample document": { - "sample identifier": "Plate1 A12", - "location identifier": "A12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_12", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1302, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_268", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1314, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_524", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1325, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_780", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1327, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1036", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1325, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1292", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1318, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1548", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1312, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1804", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1317, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2060", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1306, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2316", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1301, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2572", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1298, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2828", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1291, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3084", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1282, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3340", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1277, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3596", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1271, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3852", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1269, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4108", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1258, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4364", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1251, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4620", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1236, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4876", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1227, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5132", - "sample document": { - "sample identifier": "Plate1 A13", - "location identifier": "A13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1215, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_13", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1248, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_269", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1255, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_525", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1258, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_781", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1256, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1037", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1259, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1293", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1263, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1549", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1805", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1248, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2061", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.126, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2317", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1267, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2573", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1262, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2829", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1251, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3085", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1239, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3341", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1225, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3597", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1212, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3853", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1203, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4109", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4365", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4621", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4877", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5133", - "sample document": { - "sample identifier": "Plate1 A14", - "location identifier": "A14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_14", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_270", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_526", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_782", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1038", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1294", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1550", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1806", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2062", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2318", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2574", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2830", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3086", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3342", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3598", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3854", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4110", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4366", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4622", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4878", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5134", - "sample document": { - "sample identifier": "Plate1 A15", - "location identifier": "A15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_15", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_271", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_527", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_783", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1039", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1295", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1551", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1807", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2063", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2319", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0995, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2575", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2831", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3087", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3343", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3599", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3855", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4111", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4367", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4623", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4879", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5135", - "sample document": { - "sample identifier": "Plate1 A16", - "location identifier": "A16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_16", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_272", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0927, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_528", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_784", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1040", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1296", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1552", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0945, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1808", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0951, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2064", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2320", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2576", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2832", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3088", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3344", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3600", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3856", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0956, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4112", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0951, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4368", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4624", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4880", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0939, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5136", - "sample document": { - "sample identifier": "Plate1 B1", - "location identifier": "B1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_17", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_273", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_529", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_785", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1041", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1297", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1553", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1809", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2065", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2321", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2577", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2833", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3089", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3345", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3601", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3857", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4113", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4369", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4625", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0394, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4881", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5137", - "sample document": { - "sample identifier": "Plate1 B2", - "location identifier": "B2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_18", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_274", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0938, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_530", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_786", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1042", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1298", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0963, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1554", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1810", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2066", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0928, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2322", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2578", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0957, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2834", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3090", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3346", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3602", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3858", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4114", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4370", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4626", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4882", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5138", - "sample document": { - "sample identifier": "Plate1 B3", - "location identifier": "B3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0981, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_19", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_275", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_531", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_787", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1043", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1299", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1555", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1811", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2067", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2323", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2579", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2835", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3091", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3347", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3603", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3859", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4115", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4371", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4627", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4883", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5139", - "sample document": { - "sample identifier": "Plate1 B4", - "location identifier": "B4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0394, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_20", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_276", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_532", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_788", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1044", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1300", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1556", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1812", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2068", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2324", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0961, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2580", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2836", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0961, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3092", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3348", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3604", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3860", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4116", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0935, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4372", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4628", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4884", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5140", - "sample document": { - "sample identifier": "Plate1 B5", - "location identifier": "B5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_21", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_277", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_533", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_789", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1045", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1301", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1557", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1813", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2069", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2325", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2581", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2837", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3093", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3349", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3605", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3861", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4117", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4373", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4629", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4885", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5141", - "sample document": { - "sample identifier": "Plate1 B6", - "location identifier": "B6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0394, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_22", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0862, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_278", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0863, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_534", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0869, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_790", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0894, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1046", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1302", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0914, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1558", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0908, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1814", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2070", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0911, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2326", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2582", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0913, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2838", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3094", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0902, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3350", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0897, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3606", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0894, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3862", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4118", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0885, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4374", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0886, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4630", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0886, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4886", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0888, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5142", - "sample document": { - "sample identifier": "Plate1 B7", - "location identifier": "B7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0887, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_23", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0515, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_279", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_535", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0512, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_791", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0511, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1047", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0509, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1303", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1559", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1815", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2071", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2327", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0502, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2583", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2839", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3095", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3351", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0498, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3607", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3863", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4119", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4375", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4631", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4887", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5143", - "sample document": { - "sample identifier": "Plate1 B8", - "location identifier": "B8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_24", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0961, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_280", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_536", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_792", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1048", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1304", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1560", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1816", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2072", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2328", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2584", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0988, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2840", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0983, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3096", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3352", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3608", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0959, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3864", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4120", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4376", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4632", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4888", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0924, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5144", - "sample document": { - "sample identifier": "Plate1 B9", - "location identifier": "B9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_25", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_281", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_537", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_793", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1049", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1305", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1561", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1817", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2073", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2329", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2585", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2841", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3097", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3353", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3609", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3865", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4121", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4377", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4633", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4889", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5145", - "sample document": { - "sample identifier": "Plate1 B10", - "location identifier": "B10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0389, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_26", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0934, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_282", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_538", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_794", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1050", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1306", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1562", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1818", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2074", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2330", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2586", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2842", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3098", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3354", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3610", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0959, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3866", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0948, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4122", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4378", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0913, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4634", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0904, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4890", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0904, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5146", - "sample document": { - "sample identifier": "Plate1 B11", - "location identifier": "B11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_27", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_283", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_539", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_795", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1051", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1307", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1563", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1819", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2075", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2331", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2587", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2843", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3099", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3355", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3611", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0388, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3867", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0387, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4123", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4379", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4635", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0382, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4891", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0382, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5147", - "sample document": { - "sample identifier": "Plate1 B12", - "location identifier": "B12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0382, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_28", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1366, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_284", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.138, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_540", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1385, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_796", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1383, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1052", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1308", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1388, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1564", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1385, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1820", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2076", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2332", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1376, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2588", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1367, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2844", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1356, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3100", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1347, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3356", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1345, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3612", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1338, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3868", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1333, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4124", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1311, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4380", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1298, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4636", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1273, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4892", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1254, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5148", - "sample document": { - "sample identifier": "Plate1 B13", - "location identifier": "B13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1241, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_29", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_285", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_541", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_797", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1053", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1309", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1565", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1821", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2077", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2333", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2589", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2845", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3101", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3357", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3613", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3869", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4125", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4381", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4637", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4893", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5149", - "sample document": { - "sample identifier": "Plate1 B14", - "location identifier": "B14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_30", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_286", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_542", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_798", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1054", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1310", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1566", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1822", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2078", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2334", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2590", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2846", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3102", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3358", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3614", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3870", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4126", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4382", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4638", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4894", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5150", - "sample document": { - "sample identifier": "Plate1 B15", - "location identifier": "B15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_31", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_287", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_543", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0506, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_799", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1055", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1311", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1567", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1823", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2079", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2335", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2591", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2847", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3103", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3359", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3615", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3871", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4127", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4383", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4639", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4895", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5151", - "sample document": { - "sample identifier": "Plate1 B16", - "location identifier": "B16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_32", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1515, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_288", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1567, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_544", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1574, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_800", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.157, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1056", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1543, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1312", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1571, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1568", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1824", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1608, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2080", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1597, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2336", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2592", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1602, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2848", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1587, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3104", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.156, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3360", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1525, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3616", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3872", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4128", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4384", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4640", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1358, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4896", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1326, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5152", - "sample document": { - "sample identifier": "Plate1 C1", - "location identifier": "C1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1287, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_33", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1587, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_289", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1588, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_545", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1589, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_801", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1057", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1595, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1313", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1569", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1599, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1825", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1595, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2081", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1586, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2337", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1585, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2593", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.158, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2849", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1567, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3105", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1551, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3361", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1528, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3617", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3873", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4129", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4385", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1415, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4641", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.138, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4897", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1345, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5153", - "sample document": { - "sample identifier": "Plate1 C2", - "location identifier": "C2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1309, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_34", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_290", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_546", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_802", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1058", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1314", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1570", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1826", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2082", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2338", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2594", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2850", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3106", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3362", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3618", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3874", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4130", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4386", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4642", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4898", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5154", - "sample document": { - "sample identifier": "Plate1 C3", - "location identifier": "C3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_35", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_291", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_547", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_803", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1059", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1315", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1571", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1827", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2083", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2339", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2595", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2851", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3107", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3363", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3619", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3875", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4131", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4387", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4643", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4899", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5155", - "sample document": { - "sample identifier": "Plate1 C4", - "location identifier": "C4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_36", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_292", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_548", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_804", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1060", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1316", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1572", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1828", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2084", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2340", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2596", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2852", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3108", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3364", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3620", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3876", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4132", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4388", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4644", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4900", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5156", - "sample document": { - "sample identifier": "Plate1 C5", - "location identifier": "C5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_37", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_293", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_549", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_805", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1061", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1317", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1573", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1829", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2085", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2341", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2597", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2853", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3109", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3365", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3621", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3877", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4133", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4389", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4645", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4901", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5157", - "sample document": { - "sample identifier": "Plate1 C6", - "location identifier": "C6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_38", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_294", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_550", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1126, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_806", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1062", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1152, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1318", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1153, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1574", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1830", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1156, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2086", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2342", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2598", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2854", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3110", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1175, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3366", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3622", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3878", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1166, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4134", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1183, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4390", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1186, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4646", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4902", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1171, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5158", - "sample document": { - "sample identifier": "Plate1 C7", - "location identifier": "C7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1168, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_39", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_295", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_551", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_807", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1063", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1319", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1575", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1831", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2087", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2343", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2599", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2855", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3111", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3367", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3623", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3879", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4135", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4391", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4647", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4903", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5159", - "sample document": { - "sample identifier": "Plate1 C8", - "location identifier": "C8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_40", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1627, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_296", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1642, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_552", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1655, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_808", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1659, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1064", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1320", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1679, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1576", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1675, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1832", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1665, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2088", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.165, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2344", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1636, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2600", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1618, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2856", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1587, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3112", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1551, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3368", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3624", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3880", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4136", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4392", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.136, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4648", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1322, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4904", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1296, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5160", - "sample document": { - "sample identifier": "Plate1 C9", - "location identifier": "C9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1262, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_41", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1738, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_297", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1754, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_553", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1758, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_809", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1766, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1065", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1771, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1321", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1775, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1577", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1773, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1833", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1766, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2089", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1754, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2345", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2601", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1717, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2857", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1686, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3113", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1648, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3369", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1602, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3625", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1553, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3881", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4137", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4393", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.143, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4649", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4905", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1367, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5161", - "sample document": { - "sample identifier": "Plate1 C10", - "location identifier": "C10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1335, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_42", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_298", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_554", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_810", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1066", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1322", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1578", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1123, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1834", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2090", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2346", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1126, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2602", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1135, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2858", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1133, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3114", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3370", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1153, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3626", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3882", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1186, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4138", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4394", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4650", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4906", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1135, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5162", - "sample document": { - "sample identifier": "Plate1 C11", - "location identifier": "C11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1121, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_43", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_299", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_555", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_811", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1144, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1067", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1163, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1323", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1579", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1835", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1204, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2091", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1218, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2347", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1215, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2603", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.121, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2859", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1209, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3115", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1204, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3371", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1197, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3627", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3883", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4139", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4395", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4651", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4907", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1165, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5163", - "sample document": { - "sample identifier": "Plate1 C12", - "location identifier": "C12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_44", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_300", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_556", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_812", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1068", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1324", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1580", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1836", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2092", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2348", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2604", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2860", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3116", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3372", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3628", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3884", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4140", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4396", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4652", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4908", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5164", - "sample document": { - "sample identifier": "Plate1 C13", - "location identifier": "C13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_45", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_301", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_557", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_813", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1069", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1325", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1581", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1837", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2093", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2349", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2605", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2861", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3117", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3373", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3629", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3885", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4141", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4397", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4653", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4909", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5165", - "sample document": { - "sample identifier": "Plate1 C14", - "location identifier": "C14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_46", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_302", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_558", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_814", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1070", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1326", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1582", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1838", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2094", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2350", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2606", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2862", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3118", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3374", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3630", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3886", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4142", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4398", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4654", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0912, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4910", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5166", - "sample document": { - "sample identifier": "Plate1 C15", - "location identifier": "C15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0868, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_47", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_303", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_559", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_815", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1071", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1327", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1583", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1839", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2095", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2351", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2607", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1362, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2863", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1333, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3119", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1312, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3375", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1286, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3631", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1263, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3887", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1239, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4143", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1218, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4399", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1198, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4655", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4911", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1157, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5167", - "sample document": { - "sample identifier": "Plate1 C16", - "location identifier": "C16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1131, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_48", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1667, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_304", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.164, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_560", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1621, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_816", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1609, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1072", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1615, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1328", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1641, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1584", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1658, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1840", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1662, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2096", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1664, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2352", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.166, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2608", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1655, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2864", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1644, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3120", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1623, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3376", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1584, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3632", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1538, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3888", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4144", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4400", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4656", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1357, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4912", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1319, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5168", - "sample document": { - "sample identifier": "Plate1 D1", - "location identifier": "D1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1283, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_49", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_305", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_561", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_817", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1073", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1329", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1585", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1841", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2097", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2353", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2609", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2865", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3121", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3377", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3633", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3889", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4145", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4401", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4657", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4913", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5169", - "sample document": { - "sample identifier": "Plate1 D2", - "location identifier": "D2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_50", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_306", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_562", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_818", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1074", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1330", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1586", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1842", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2098", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2354", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2610", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2866", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3122", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3378", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3634", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3890", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4146", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4402", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4658", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4914", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5170", - "sample document": { - "sample identifier": "Plate1 D3", - "location identifier": "D3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_51", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_307", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_563", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_819", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1075", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1331", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1587", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1843", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2099", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2355", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2611", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2867", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3123", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3379", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3635", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3891", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4147", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4403", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4659", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4915", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5171", - "sample document": { - "sample identifier": "Plate1 D4", - "location identifier": "D4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_52", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_308", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_564", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_820", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1076", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1332", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1588", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1844", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2100", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2356", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2612", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2868", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3124", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3380", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3636", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3892", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4148", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4404", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4660", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4916", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5172", - "sample document": { - "sample identifier": "Plate1 D5", - "location identifier": "D5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_53", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_309", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_565", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_821", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1077", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1333", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1589", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1845", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2101", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2357", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2613", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2869", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3125", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3381", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3637", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3893", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4149", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4405", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4661", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4917", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5173", - "sample document": { - "sample identifier": "Plate1 D6", - "location identifier": "D6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_54", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_310", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1123, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_566", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_822", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1135, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1078", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1334", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1163, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1590", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1171, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1846", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2102", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2358", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2614", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1168, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2870", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1156, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3126", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1146, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3382", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3638", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1136, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3894", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1133, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4150", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1133, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4406", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1139, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4662", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1144, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4918", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5174", - "sample document": { - "sample identifier": "Plate1 D7", - "location identifier": "D7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_55", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_311", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_567", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_823", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1079", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1335", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1591", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1847", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2103", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2359", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2615", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2871", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3127", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3383", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3639", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3895", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4151", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4407", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4663", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4919", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5175", - "sample document": { - "sample identifier": "Plate1 D8", - "location identifier": "D8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_56", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1742, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_312", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1773, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_568", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1794, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_824", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1795, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1080", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.179, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1336", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1772, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1592", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1763, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1848", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1758, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2104", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1732, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2360", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1727, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2616", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1706, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2872", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3128", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1681, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3384", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1644, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3640", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1634, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3896", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1583, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4152", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1557, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4408", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.151, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4664", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4920", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5176", - "sample document": { - "sample identifier": "Plate1 D9", - "location identifier": "D9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_57", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_313", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_569", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_825", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1081", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1337", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1593", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1849", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2105", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2361", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2617", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2873", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3129", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3385", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3641", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3897", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4153", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4409", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4665", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4921", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5177", - "sample document": { - "sample identifier": "Plate1 D10", - "location identifier": "D10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_58", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_314", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_570", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_826", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1082", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1338", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1594", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1850", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2106", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2362", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2618", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2874", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1121, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3130", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1128, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3386", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3642", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1141, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3898", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4154", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1158, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4410", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1156, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4666", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4922", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1138, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5178", - "sample document": { - "sample identifier": "Plate1 D11", - "location identifier": "D11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_59", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_315", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_571", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_827", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1083", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1339", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1595", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1851", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2107", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2363", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2619", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2875", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3131", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3387", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3643", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3899", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4155", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4411", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4667", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4923", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5179", - "sample document": { - "sample identifier": "Plate1 D12", - "location identifier": "D12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_60", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_316", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_572", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_828", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1084", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1340", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1596", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1852", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2108", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2364", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2620", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2876", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3132", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3388", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3644", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3900", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4156", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4412", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4668", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4924", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5180", - "sample document": { - "sample identifier": "Plate1 D13", - "location identifier": "D13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_61", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_317", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_573", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_829", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1085", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1341", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1597", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1853", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2109", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2365", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2621", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2877", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3133", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3389", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3645", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3901", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4157", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4413", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4669", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4925", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5181", - "sample document": { - "sample identifier": "Plate1 D14", - "location identifier": "D14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_62", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_318", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_574", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_830", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1086", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1342", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1598", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1854", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2110", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2366", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2622", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2878", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3134", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0981, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3390", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3646", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3902", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0938, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4158", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4414", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.09, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4670", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0878, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4926", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5182", - "sample document": { - "sample identifier": "Plate1 D15", - "location identifier": "D15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0839, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_63", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0571, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_319", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0571, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_575", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0569, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_831", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1087", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1343", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0567, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1599", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0568, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1855", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0567, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2111", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0567, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2367", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0564, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2623", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0562, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2879", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0562, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3135", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0563, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3391", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0561, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3647", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0561, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3903", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4159", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4415", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0559, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4671", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0559, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4927", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0558, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5183", - "sample document": { - "sample identifier": "Plate1 D16", - "location identifier": "D16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0558, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_64", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1718, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_320", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_576", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1773, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_832", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.179, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1088", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1799, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1344", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1791, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1600", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1781, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1856", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1771, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2112", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1761, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2368", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1766, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2624", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1758, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2880", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1741, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3136", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1715, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3392", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1679, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3648", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1644, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3904", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1618, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4160", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1578, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4416", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1546, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4672", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1512, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4928", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5184", - "sample document": { - "sample identifier": "Plate1 E1", - "location identifier": "E1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_65", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.165, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_321", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1659, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_577", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1662, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_833", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1664, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1089", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1669, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1345", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1664, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1601", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1654, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1857", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1634, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2113", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1614, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2369", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.161, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2625", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2881", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1588, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3137", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.157, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3393", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1543, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3649", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1518, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3905", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4161", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4417", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4673", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4929", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1373, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5185", - "sample document": { - "sample identifier": "Plate1 E2", - "location identifier": "E2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1342, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_66", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_322", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0999, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_578", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_834", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1090", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1346", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1602", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1858", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2114", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2370", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2626", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2882", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3138", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3394", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3650", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3906", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4162", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4418", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4674", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4930", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5186", - "sample document": { - "sample identifier": "Plate1 E3", - "location identifier": "E3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_67", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_323", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_579", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_835", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1091", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1347", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1603", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1859", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2115", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2371", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2627", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2883", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3139", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3395", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3651", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3907", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4163", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4419", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4675", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4931", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5187", - "sample document": { - "sample identifier": "Plate1 E4", - "location identifier": "E4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_68", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_324", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_580", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_836", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1092", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1348", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1604", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1860", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2116", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2372", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2628", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2884", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3140", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3396", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3652", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3908", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4164", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4420", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4676", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4932", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5188", - "sample document": { - "sample identifier": "Plate1 E5", - "location identifier": "E5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_69", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_325", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_581", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_837", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1093", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1349", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1605", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1861", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2117", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2373", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2629", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2885", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3141", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3397", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3653", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3909", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4165", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4421", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4677", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4933", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5189", - "sample document": { - "sample identifier": "Plate1 E6", - "location identifier": "E6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_70", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_326", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_582", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_838", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1094", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1350", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1606", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1862", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2118", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2374", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2630", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2886", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3142", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3398", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3654", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3910", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4166", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4422", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4678", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4934", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5190", - "sample document": { - "sample identifier": "Plate1 E7", - "location identifier": "E7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_71", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_327", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_583", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_839", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1126, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1095", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1145, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1351", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1145, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1607", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1142, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1863", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2119", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1177, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2375", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2631", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2887", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3143", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3399", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3655", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3911", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4167", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4423", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4679", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1168, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4935", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5191", - "sample document": { - "sample identifier": "Plate1 E8", - "location identifier": "E8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_72", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_328", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_584", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_840", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1096", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1352", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1608", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1864", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1127, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2120", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1138, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2376", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1152, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2632", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2888", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1158, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3144", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3400", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3656", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1163, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3912", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4168", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4424", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4680", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1179, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4936", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5192", - "sample document": { - "sample identifier": "Plate1 E9", - "location identifier": "E9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_73", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_329", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_585", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_841", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1097", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1353", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1609", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1865", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2121", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2377", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2633", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2889", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1123, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3145", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3401", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3657", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3913", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4169", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4425", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4681", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4937", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5193", - "sample document": { - "sample identifier": "Plate1 E10", - "location identifier": "E10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_74", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_330", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_586", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_842", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1098", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1354", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1610", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1866", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2122", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2378", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2634", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2890", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3146", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3402", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3658", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3914", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4170", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4426", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4682", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4938", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5194", - "sample document": { - "sample identifier": "Plate1 E11", - "location identifier": "E11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_75", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_331", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_587", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_843", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1099", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1355", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1611", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1867", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2123", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2379", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1136, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2635", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1138, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2891", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1139, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3147", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3403", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3659", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3915", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4171", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4427", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4683", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4939", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5195", - "sample document": { - "sample identifier": "Plate1 E12", - "location identifier": "E12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_76", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1544, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_332", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1559, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_588", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1566, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_844", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1579, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1100", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1574, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1356", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1596, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1612", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1598, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1868", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1587, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2124", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.157, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2380", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1563, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2636", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1549, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2892", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1531, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3148", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1522, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3404", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.151, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3660", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3916", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4172", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4428", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4684", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4940", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1375, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5196", - "sample document": { - "sample identifier": "Plate1 E13", - "location identifier": "E13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1345, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_77", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1571, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_333", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1568, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_589", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1565, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_845", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1586, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1101", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1612, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1357", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1617, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1613", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1612, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1869", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.16, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2125", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1583, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2381", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1573, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2637", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1556, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2893", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1536, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3149", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3405", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.149, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3661", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3917", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4173", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.141, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4429", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1387, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4685", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1359, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4941", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1332, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5197", - "sample document": { - "sample identifier": "Plate1 E14", - "location identifier": "E14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1304, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_78", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_334", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_590", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_846", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1102", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1358", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1614", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1870", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2126", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2382", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2638", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2894", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3150", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3406", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3662", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3918", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4174", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4430", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4686", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4942", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5198", - "sample document": { - "sample identifier": "Plate1 E15", - "location identifier": "E15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_79", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_335", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_591", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_847", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1103", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1359", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1615", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1871", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2127", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2383", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2639", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2895", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0502, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3151", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0502, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3407", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3663", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3919", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4175", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4431", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4687", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4943", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5199", - "sample document": { - "sample identifier": "Plate1 E16", - "location identifier": "E16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_80", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1605, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_336", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1602, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_592", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1594, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_848", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1621, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1104", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.162, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1360", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1635, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1616", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1649, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1872", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1652, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2128", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1645, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2384", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1638, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2640", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1626, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2896", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1607, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3152", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1588, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3408", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1563, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3664", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1532, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3920", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4176", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.145, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4432", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4688", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1378, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4944", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.135, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5200", - "sample document": { - "sample identifier": "Plate1 F1", - "location identifier": "F1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1327, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_81", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_337", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_593", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_849", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1105", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1361", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1617", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1873", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2129", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2385", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2641", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2897", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3153", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3409", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3665", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3921", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4177", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4433", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4689", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4945", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5201", - "sample document": { - "sample identifier": "Plate1 F2", - "location identifier": "F2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_82", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_338", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0988, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_594", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_850", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1106", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1362", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1618", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1874", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2130", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2386", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2642", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2898", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3154", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3410", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3666", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3922", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4178", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4434", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4690", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4946", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5202", - "sample document": { - "sample identifier": "Plate1 F3", - "location identifier": "F3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_83", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_339", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_595", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_851", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1107", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1363", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1619", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1875", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2131", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2387", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2643", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2899", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3155", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3411", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3667", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3923", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4179", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4435", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4691", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4947", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5203", - "sample document": { - "sample identifier": "Plate1 F4", - "location identifier": "F4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_84", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_340", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_596", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_852", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1108", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1364", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1620", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1876", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2132", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2388", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2644", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2900", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3156", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3412", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3668", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3924", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4180", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4436", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4692", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4948", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5204", - "sample document": { - "sample identifier": "Plate1 F5", - "location identifier": "F5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_85", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_341", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_597", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_853", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1109", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1365", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1621", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1877", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2133", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2389", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2645", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2901", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3157", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3413", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3669", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3925", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4181", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4437", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4693", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4949", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5205", - "sample document": { - "sample identifier": "Plate1 F6", - "location identifier": "F6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_86", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_342", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_598", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_854", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1110", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1366", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1622", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1878", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2134", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2390", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2646", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1131, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2902", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3158", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1122, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3414", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3670", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3926", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4182", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4438", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4694", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4950", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5206", - "sample document": { - "sample identifier": "Plate1 F7", - "location identifier": "F7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_87", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0617, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_343", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0615, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_599", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0613, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_855", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0612, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1111", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0613, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1367", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0611, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1623", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1879", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0609, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2135", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0609, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2391", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0611, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2647", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0609, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2903", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0611, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3159", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0609, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3415", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0609, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3671", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0608, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3927", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0607, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4183", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0605, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4439", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0606, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4695", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0603, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4951", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0604, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5207", - "sample document": { - "sample identifier": "Plate1 F8", - "location identifier": "F8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0602, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_88", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_344", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_600", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_856", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1112", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1368", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1624", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1880", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2136", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2392", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2648", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2904", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1123, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3160", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3416", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1121, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3672", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1122, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3928", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4184", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4440", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4696", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4952", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5208", - "sample document": { - "sample identifier": "Plate1 F9", - "location identifier": "F9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_89", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_345", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_601", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_857", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1113", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1369", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1625", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1881", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2137", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2393", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2649", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2905", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3161", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3417", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3673", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3929", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4185", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4441", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4697", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4953", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5209", - "sample document": { - "sample identifier": "Plate1 F10", - "location identifier": "F10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_90", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_346", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_602", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_858", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1114", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1370", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1626", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1882", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2138", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2394", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2650", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2906", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3162", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3418", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3674", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3930", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4186", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4442", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4698", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4954", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5210", - "sample document": { - "sample identifier": "Plate1 F11", - "location identifier": "F11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_91", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_347", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_603", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_859", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1115", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1371", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1627", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1883", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2139", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2395", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2651", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2907", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3163", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3419", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3675", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3931", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4187", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4443", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4699", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4955", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5211", - "sample document": { - "sample identifier": "Plate1 F12", - "location identifier": "F12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_92", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1606, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_348", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.162, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_604", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1616, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_860", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.162, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1116", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1633, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1372", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1642, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1628", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1632, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1884", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1618, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2140", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1591, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2396", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1579, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2652", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1561, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2908", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1535, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3164", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1517, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3420", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3676", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3932", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4188", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.144, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4444", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4700", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4956", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1362, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5212", - "sample document": { - "sample identifier": "Plate1 F13", - "location identifier": "F13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1333, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_93", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_349", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_605", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_861", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1117", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1373", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1629", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1885", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2141", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2397", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2653", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2909", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3165", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3421", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3677", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3933", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4189", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4445", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4701", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4957", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5213", - "sample document": { - "sample identifier": "Plate1 F14", - "location identifier": "F14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_94", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_350", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_606", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_862", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1118", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1374", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1630", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1886", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2142", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2398", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2654", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2910", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3166", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3422", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3678", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3934", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4190", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4446", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4702", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4958", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5214", - "sample document": { - "sample identifier": "Plate1 F15", - "location identifier": "F15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_95", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_351", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_607", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_863", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1119", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1375", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1631", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1887", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2143", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2399", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2655", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2911", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3167", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3423", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3679", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3935", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4191", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4447", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4703", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4959", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5215", - "sample document": { - "sample identifier": "Plate1 F16", - "location identifier": "F16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_96", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_352", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1721, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_608", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1699, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_864", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1705, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1120", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1718, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1376", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1694, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1632", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1659, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1888", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1648, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2144", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1646, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2400", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1644, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2656", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1637, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2912", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1619, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3168", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3424", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1573, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3680", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1544, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3936", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1516, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4192", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4448", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4704", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.142, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4960", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5216", - "sample document": { - "sample identifier": "Plate1 G1", - "location identifier": "G1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1358, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_97", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1698, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_353", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_609", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1704, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_865", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.175, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1121", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1752, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1377", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1731, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1633", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1697, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1889", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1673, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2145", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1667, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2401", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1683, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2657", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1684, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2913", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1673, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3169", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1661, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3425", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1637, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3681", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.161, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3937", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1584, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4193", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1549, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4449", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4705", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4961", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5217", - "sample document": { - "sample identifier": "Plate1 G2", - "location identifier": "G2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1385, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_98", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1292, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_354", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1297, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_610", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1304, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_866", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1321, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1122", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1315, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1378", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1324, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1634", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1329, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1890", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1325, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2146", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.132, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2402", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1324, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2658", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1327, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2914", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.132, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3170", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1311, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3426", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1297, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3682", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1285, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3938", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1277, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4194", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1262, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4450", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1253, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4706", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1241, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4962", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.123, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5218", - "sample document": { - "sample identifier": "Plate1 G3", - "location identifier": "G3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1218, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_99", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1309, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_355", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.131, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_611", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1326, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_867", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1346, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1123", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1379", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1326, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1635", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1314, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1891", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1312, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2147", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1317, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2403", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1327, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2659", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1336, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2915", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1336, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3171", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1337, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3427", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1325, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3683", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1318, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3939", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1309, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4195", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.13, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4451", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4707", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1276, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4963", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1267, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5219", - "sample document": { - "sample identifier": "Plate1 G4", - "location identifier": "G4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1254, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_100", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_356", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_612", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_868", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1124", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1380", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1636", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1892", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2148", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2404", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2660", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2916", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3172", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3428", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3684", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3940", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4196", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4452", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4708", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4964", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5220", - "sample document": { - "sample identifier": "Plate1 G5", - "location identifier": "G5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_101", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_357", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_613", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_869", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1125", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1381", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1637", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1893", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2149", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2405", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2661", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2917", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3173", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3429", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3685", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3941", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4197", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4453", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4709", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4965", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5221", - "sample document": { - "sample identifier": "Plate1 G6", - "location identifier": "G6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_102", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1696, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_358", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1706, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_614", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1707, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_870", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.171, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1126", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1712, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1382", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1713, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1638", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1711, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1894", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1712, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2150", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1706, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2406", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1695, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2662", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1678, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2918", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1655, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3174", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.163, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3430", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1595, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3686", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1559, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3942", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1521, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4198", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4454", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4710", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.141, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4966", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1381, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5222", - "sample document": { - "sample identifier": "Plate1 G7", - "location identifier": "G7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1351, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_103", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1797, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_359", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1807, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_615", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1813, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_871", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1823, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1127", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1829, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1383", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1828, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1639", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.183, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1895", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1828, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2151", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1824, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2407", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1818, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2663", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.18, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2919", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1772, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3175", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3431", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1699, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3687", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1656, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3943", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1612, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4199", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1575, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4455", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1545, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4711", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.151, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4967", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5223", - "sample document": { - "sample identifier": "Plate1 G8", - "location identifier": "G8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_104", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0906, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_360", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0913, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_616", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0913, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_872", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0922, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1128", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0927, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1384", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0935, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1640", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1896", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0926, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2152", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2408", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2664", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0927, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2920", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0939, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3176", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3432", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3688", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3944", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4200", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4456", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4712", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0975, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4968", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5224", - "sample document": { - "sample identifier": "Plate1 G9", - "location identifier": "G9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0983, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_105", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_361", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_617", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_873", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1129", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1385", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1641", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1897", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2153", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2409", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2665", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2921", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3177", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3433", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3689", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3945", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4201", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4457", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4713", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4969", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5225", - "sample document": { - "sample identifier": "Plate1 G10", - "location identifier": "G10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_106", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_362", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_618", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_874", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1130", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1386", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1642", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1898", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2154", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2410", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2666", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1128, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2922", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1128, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3178", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1123, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3434", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1122, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3690", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3946", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1126, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4202", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4458", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4714", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4970", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5226", - "sample document": { - "sample identifier": "Plate1 G11", - "location identifier": "G11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_107", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_363", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_619", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_875", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1131", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1387", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1643", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1899", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1116, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2155", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2411", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2667", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2923", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3179", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3435", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3691", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3947", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4203", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4459", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4715", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4971", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5227", - "sample document": { - "sample identifier": "Plate1 G12", - "location identifier": "G12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_108", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_364", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.197, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_620", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1976, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_876", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1995, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1132", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.2004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1388", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1999, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1644", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1975, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1900", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2156", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2412", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1906, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2668", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.189, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2924", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1862, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3180", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1835, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3436", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1798, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3692", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1768, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3948", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1739, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4204", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1699, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4460", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1665, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4716", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1627, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4972", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1591, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5228", - "sample document": { - "sample identifier": "Plate1 G13", - "location identifier": "G13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1552, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_109", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_365", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1924, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_621", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_877", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1956, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1133", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1389", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1645", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1916, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1901", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2157", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1886, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2413", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1877, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2669", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1862, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2925", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1839, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3181", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1813, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3437", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1777, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3693", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3949", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1698, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4205", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1657, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4461", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1617, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4717", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1574, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4973", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1535, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5229", - "sample document": { - "sample identifier": "Plate1 G14", - "location identifier": "G14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_110", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_366", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_622", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_878", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1134", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1390", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1646", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1902", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2158", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2414", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2670", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2926", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3182", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3438", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3694", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3950", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4206", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4462", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4718", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4974", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5230", - "sample document": { - "sample identifier": "Plate1 G15", - "location identifier": "G15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_111", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_367", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_623", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_879", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1135", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1391", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1647", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1903", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2159", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2415", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2671", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2927", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3183", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3439", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3695", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3951", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4207", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4463", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4719", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4975", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5231", - "sample document": { - "sample identifier": "Plate1 G16", - "location identifier": "G16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_112", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1822, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_368", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1802, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_624", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1789, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_880", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1769, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1136", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1754, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1392", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1777, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1648", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1792, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1904", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1801, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2160", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1793, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2416", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1791, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2672", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1789, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2928", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.177, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3184", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1734, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3440", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1689, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3696", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1641, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3952", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1591, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4208", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1538, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4464", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4720", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4976", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5232", - "sample document": { - "sample identifier": "Plate1 H1", - "location identifier": "H1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.138, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_113", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_369", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_625", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_881", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1137", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1393", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1649", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1905", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2161", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2417", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2673", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2929", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3185", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3441", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3697", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3953", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4209", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4465", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4721", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4977", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5233", - "sample document": { - "sample identifier": "Plate1 H2", - "location identifier": "H2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_114", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1338, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_370", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1331, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_626", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1334, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_882", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1347, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1138", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1357, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1394", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1362, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1650", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1372, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1906", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1377, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2162", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1372, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2418", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.137, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2674", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1371, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2930", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.137, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3186", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1371, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3442", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1362, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3698", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1351, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3954", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1333, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4210", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1322, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4466", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1305, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4722", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1288, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4978", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1269, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5234", - "sample document": { - "sample identifier": "Plate1 H3", - "location identifier": "H3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1257, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_115", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_371", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_627", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_883", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1139", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1395", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1651", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1907", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2163", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2419", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2675", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2931", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3187", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3443", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3699", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3955", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4211", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4467", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4723", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4979", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5235", - "sample document": { - "sample identifier": "Plate1 H4", - "location identifier": "H4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_116", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_372", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_628", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_884", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1140", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1396", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1652", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1908", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2164", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2420", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2676", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2932", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3188", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3444", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3700", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3956", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4212", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4468", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4724", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4980", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5236", - "sample document": { - "sample identifier": "Plate1 H5", - "location identifier": "H5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_117", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0574, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_373", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0571, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_629", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0569, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_885", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0566, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1141", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0565, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1397", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0564, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1653", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0564, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1909", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0564, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2165", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0559, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2421", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0559, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2677", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0558, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2933", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0556, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3189", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0557, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3445", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0555, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3701", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0556, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3957", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0553, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4213", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0552, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4469", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0551, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4725", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4981", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0548, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5237", - "sample document": { - "sample identifier": "Plate1 H6", - "location identifier": "H6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0546, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_118", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1754, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_374", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.177, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_630", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1771, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_886", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1779, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1142", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.179, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1398", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1793, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1654", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1804, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1910", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1809, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2166", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1802, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2422", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.179, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2678", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1765, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2934", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3190", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1691, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3446", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1645, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3702", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1603, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3958", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1563, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4214", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1531, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4470", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4726", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4982", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5238", - "sample document": { - "sample identifier": "Plate1 H7", - "location identifier": "H7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_119", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_375", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_631", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0588, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_887", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0589, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1143", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0587, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1399", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0586, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1655", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0585, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1911", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0584, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2167", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0583, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2423", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0581, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2679", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0579, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2935", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3191", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3447", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0581, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3703", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0577, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3959", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0574, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4215", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0572, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4471", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0575, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4727", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0569, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4983", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0574, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5239", - "sample document": { - "sample identifier": "Plate1 H8", - "location identifier": "H8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_120", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_376", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_632", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_888", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1144", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1400", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1656", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1912", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2168", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2424", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2680", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2936", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3192", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3448", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3704", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3960", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4216", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4472", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4728", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4984", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5240", - "sample document": { - "sample identifier": "Plate1 H9", - "location identifier": "H9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_121", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_377", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_633", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_889", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1145", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1401", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1657", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1913", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2169", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2425", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2681", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2937", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3193", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3449", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3705", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3961", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4217", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4473", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4729", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4985", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5241", - "sample document": { - "sample identifier": "Plate1 H10", - "location identifier": "H10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_122", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_378", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_634", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_890", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1146", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1402", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1658", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1914", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2170", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1128, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2426", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2682", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1142, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2938", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3194", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3450", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3706", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3962", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4218", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4474", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4730", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4986", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5242", - "sample document": { - "sample identifier": "Plate1 H11", - "location identifier": "H11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_123", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_379", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_635", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_891", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1147", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1403", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1659", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1915", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2171", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2427", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2683", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2939", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3195", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3451", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3707", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3963", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4219", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4475", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4731", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4987", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5243", - "sample document": { - "sample identifier": "Plate1 H12", - "location identifier": "H12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_124", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.2005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_380", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_636", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_892", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.196, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1148", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1404", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1935, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1660", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1917, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1916", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2172", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1884, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2428", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1869, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2684", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1848, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2940", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1812, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3196", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1782, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3452", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1743, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3708", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1711, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3964", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.168, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4220", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1647, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4476", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1612, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4732", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1578, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4988", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1539, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5244", - "sample document": { - "sample identifier": "Plate1 H13", - "location identifier": "H13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1502, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_125", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_381", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_637", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_893", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1149", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1405", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1661", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1917", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2173", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2429", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2685", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2941", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3197", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3453", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3709", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3965", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4221", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4477", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4733", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4989", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5245", - "sample document": { - "sample identifier": "Plate1 H14", - "location identifier": "H14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_126", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_382", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_638", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_894", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1150", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1406", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1662", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1918", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2174", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2430", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2686", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2942", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3198", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3454", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3710", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3966", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4222", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4478", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4734", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4990", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5246", - "sample document": { - "sample identifier": "Plate1 H15", - "location identifier": "H15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_127", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_383", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_639", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_895", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1151", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1407", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1663", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1919", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2175", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2431", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2687", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2943", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3199", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3455", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3711", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3967", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4223", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4479", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4735", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4991", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5247", - "sample document": { - "sample identifier": "Plate1 H16", - "location identifier": "H16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_128", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1786, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_384", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1745, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_640", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1758, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_896", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1765, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1152", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1408", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1742, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1664", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1717, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1920", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.17, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2176", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1687, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2432", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1673, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2688", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.166, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2944", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1639, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3200", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1599, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3456", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1551, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3712", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.151, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3968", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4224", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4480", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4736", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1379, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4992", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1348, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5248", - "sample document": { - "sample identifier": "Plate1 I1", - "location identifier": "I1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1314, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_129", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1728, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_385", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1732, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_641", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_897", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1732, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1153", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1737, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1409", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1748, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1665", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1745, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1921", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2177", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1706, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2433", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1679, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2689", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1644, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2945", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1611, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3201", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1591, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3457", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1562, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3713", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1539, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3969", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4225", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4481", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4737", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.141, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4993", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1373, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5249", - "sample document": { - "sample identifier": "Plate1 I2", - "location identifier": "I2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1332, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_130", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_386", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0977, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_642", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0977, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_898", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1154", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1410", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1666", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1922", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2178", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2434", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2690", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2946", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3202", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3458", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3714", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3970", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4226", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4482", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4738", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4994", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5250", - "sample document": { - "sample identifier": "Plate1 I3", - "location identifier": "I3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_131", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_387", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_643", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_899", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1155", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1411", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1667", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1923", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2179", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2435", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2691", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2947", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3203", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3459", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3715", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3971", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4227", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4483", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4739", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4995", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5251", - "sample document": { - "sample identifier": "Plate1 I4", - "location identifier": "I4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_132", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_388", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_644", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_900", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1156", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1412", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1668", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1924", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2180", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2436", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2692", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2948", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3204", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3460", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3716", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3972", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4228", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4484", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4740", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4996", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5252", - "sample document": { - "sample identifier": "Plate1 I5", - "location identifier": "I5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_133", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_389", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_645", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_901", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1157", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1413", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1669", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1925", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2181", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2437", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2693", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2949", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3205", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3461", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3717", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3973", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4229", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4485", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4741", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4997", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5253", - "sample document": { - "sample identifier": "Plate1 I6", - "location identifier": "I6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_134", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1231, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_390", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1244, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_646", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_902", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1251, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1158", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1248, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1414", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1249, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1670", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1926", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1249, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2182", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1254, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2438", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1257, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2694", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1255, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2950", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1255, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3206", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3462", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1244, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3718", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1237, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3974", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1237, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4230", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1237, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4486", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1234, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4742", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1225, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4998", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1221, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5254", - "sample document": { - "sample identifier": "Plate1 I7", - "location identifier": "I7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1207, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_135", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1293, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_391", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1305, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_647", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1305, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_903", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1305, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1159", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1305, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1415", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1307, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1671", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1304, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1927", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1307, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2183", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1311, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2439", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1308, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2695", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1305, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2951", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1297, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3207", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1292, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3463", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1292, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3719", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1287, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3975", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.128, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4231", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1274, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4487", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1269, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4743", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1269, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4999", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1256, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5255", - "sample document": { - "sample identifier": "Plate1 I8", - "location identifier": "I8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1246, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_136", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_392", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_648", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_904", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1160", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1416", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1672", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1928", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2184", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2440", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2696", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2952", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3208", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3464", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3720", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3976", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4232", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4488", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4744", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5000", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5256", - "sample document": { - "sample identifier": "Plate1 I9", - "location identifier": "I9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_137", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_393", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_649", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_905", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0928, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1161", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0919, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1417", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0931, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1673", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1929", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2185", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2441", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2697", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0981, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2953", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3209", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3465", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3721", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3977", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4233", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4489", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4745", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5001", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5257", - "sample document": { - "sample identifier": "Plate1 I10", - "location identifier": "I10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_138", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_394", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_650", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_906", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1162", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1418", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1674", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1930", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2186", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2442", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2698", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2954", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3210", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3466", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3722", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3978", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4234", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4490", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4746", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5002", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5258", - "sample document": { - "sample identifier": "Plate1 I11", - "location identifier": "I11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_139", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_395", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_651", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_907", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1163", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1419", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1675", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1931", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2187", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2443", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2699", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2955", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3211", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3467", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3723", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3979", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4235", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4491", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4747", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5003", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5259", - "sample document": { - "sample identifier": "Plate1 I12", - "location identifier": "I12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_140", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1156, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_396", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_652", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1151, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_908", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1158, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1164", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1420", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1158, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1676", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1932", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2188", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2444", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1192, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2700", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1194, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2956", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1196, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3212", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3468", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1192, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3724", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3980", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1201, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4236", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4492", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4748", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1183, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5004", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5260", - "sample document": { - "sample identifier": "Plate1 I13", - "location identifier": "I13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_141", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_397", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_653", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_909", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1165", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1421", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1677", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1113, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1933", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1116, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2189", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2445", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2701", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2957", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3213", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1121, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3469", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3725", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3981", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4237", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1116, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4493", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4749", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5005", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5261", - "sample document": { - "sample identifier": "Plate1 I14", - "location identifier": "I14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 549.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_142", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_398", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_654", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_910", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0506, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1166", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1422", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1678", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1934", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2190", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2446", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2702", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0498, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2958", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3214", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3470", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3726", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3982", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4238", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4494", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4750", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5006", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5262", - "sample document": { - "sample identifier": "Plate1 I15", - "location identifier": "I15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_143", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0523, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_399", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0522, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_655", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_911", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0521, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1167", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0519, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1423", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0517, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1679", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0515, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1935", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2191", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0517, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2447", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0515, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2703", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0512, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2959", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0512, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3215", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3471", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0509, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3727", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0509, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3983", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4239", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4495", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0506, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4751", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5007", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5263", - "sample document": { - "sample identifier": "Plate1 I16", - "location identifier": "I16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_144", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1724, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_400", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1715, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_656", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1727, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_912", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1747, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1168", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1757, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1424", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1736, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1680", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1686, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1936", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1678, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2192", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1696, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2448", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.17, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2704", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1689, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2960", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1664, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3216", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1637, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3472", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3728", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1542, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3984", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4240", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4496", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4752", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1387, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5008", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1363, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5264", - "sample document": { - "sample identifier": "Plate1 J1", - "location identifier": "J1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1336, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_145", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_401", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_657", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_913", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1169", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1425", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1681", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1937", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2193", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2449", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2705", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2961", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3217", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3473", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3729", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3985", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4241", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4497", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4753", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5009", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5265", - "sample document": { - "sample identifier": "Plate1 J2", - "location identifier": "J2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_146", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_402", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_658", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_914", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1170", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1426", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1682", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1938", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2194", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2450", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2706", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2962", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3218", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3474", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3730", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3986", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4242", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4498", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4754", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5010", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5266", - "sample document": { - "sample identifier": "Plate1 J3", - "location identifier": "J3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_147", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_403", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_659", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_915", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1171", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1427", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1683", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1939", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2195", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2451", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2707", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2963", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3219", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3475", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3731", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3987", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4243", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4499", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4755", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5011", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5267", - "sample document": { - "sample identifier": "Plate1 J4", - "location identifier": "J4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_148", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_404", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_660", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_916", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1172", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1428", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1684", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1940", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2196", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2452", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2708", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2964", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3220", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3476", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3732", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3988", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4244", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4500", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4756", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5012", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5268", - "sample document": { - "sample identifier": "Plate1 J5", - "location identifier": "J5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_149", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_405", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_661", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_917", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1173", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1429", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1685", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1941", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2197", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2453", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2709", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2965", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3221", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3477", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3733", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3989", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4245", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4501", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4757", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5013", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5269", - "sample document": { - "sample identifier": "Plate1 J6", - "location identifier": "J6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_150", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1222, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_406", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1231, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_662", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1237, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_918", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1252, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1174", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1430", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1245, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1686", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1246, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1942", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1248, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2198", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1249, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2454", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1251, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2710", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1255, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2966", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1249, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3222", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1241, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3478", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1238, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3734", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1222, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3990", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1223, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4246", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1228, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4502", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1224, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4758", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1209, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5014", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1214, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5270", - "sample document": { - "sample identifier": "Plate1 J7", - "location identifier": "J7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_151", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0605, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_407", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_663", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.06, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_919", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.06, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1175", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0596, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1431", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0596, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1687", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0593, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1943", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2199", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2455", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2711", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2967", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0589, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3223", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0588, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3479", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0586, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3735", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0585, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3991", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0584, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4247", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0583, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4503", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0579, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4759", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5015", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0576, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5271", - "sample document": { - "sample identifier": "Plate1 J8", - "location identifier": "J8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0575, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_152", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_408", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_664", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_920", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1176", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0999, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1432", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1688", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1944", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2200", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2456", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2712", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2968", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3224", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3480", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3736", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3992", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4248", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4504", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4760", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5016", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5272", - "sample document": { - "sample identifier": "Plate1 J9", - "location identifier": "J9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_153", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_409", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_665", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_921", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1177", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1433", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1689", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1945", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2201", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2457", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2713", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2969", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3225", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3481", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3737", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3993", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4249", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4505", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4761", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5017", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5273", - "sample document": { - "sample identifier": "Plate1 J10", - "location identifier": "J10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_154", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_410", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_666", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_922", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1178", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1434", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1690", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1946", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2202", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2458", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2714", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2970", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3226", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3482", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3738", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3994", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4250", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4506", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4762", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5018", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5274", - "sample document": { - "sample identifier": "Plate1 J11", - "location identifier": "J11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_155", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_411", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_667", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_923", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0488, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1179", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1435", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1691", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1947", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2203", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2459", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2715", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2971", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3227", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3483", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3739", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3995", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4251", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4507", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4763", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5019", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5275", - "sample document": { - "sample identifier": "Plate1 J12", - "location identifier": "J12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_156", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1168, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_412", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1171, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_668", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1148, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_924", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1180", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1182, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1436", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1692", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1198, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1948", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1202, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2204", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1191, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2460", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2716", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2972", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3228", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3484", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3740", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1172, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3996", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1175, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4252", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4508", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1171, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4764", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5020", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1165, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5276", - "sample document": { - "sample identifier": "Plate1 J13", - "location identifier": "J13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1162, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_157", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_413", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_669", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_925", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1181", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1437", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1693", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1949", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2205", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2461", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2717", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2973", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3229", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3485", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3741", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3997", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4253", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4509", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4765", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5021", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5277", - "sample document": { - "sample identifier": "Plate1 J14", - "location identifier": "J14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_158", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_414", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0487, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_670", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_926", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0486, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1182", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1438", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1694", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1950", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2206", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2462", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2718", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2974", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3230", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0477, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3486", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3742", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3998", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4254", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4510", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4766", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5022", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5278", - "sample document": { - "sample identifier": "Plate1 J15", - "location identifier": "J15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_159", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0511, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_415", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0511, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_671", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0509, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_927", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0509, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1183", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1439", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1695", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1951", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2207", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0507, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2463", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2719", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2975", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3231", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3487", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3743", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3999", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0497, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4255", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4511", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4767", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5023", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5279", - "sample document": { - "sample identifier": "Plate1 J16", - "location identifier": "J16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_160", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1358, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_416", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1357, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_672", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1362, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_928", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1366, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1184", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1377, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1440", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1376, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1696", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1368, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1952", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1365, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2208", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1358, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2464", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.137, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2720", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1368, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2976", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1357, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3232", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.135, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3488", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1342, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3744", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1335, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4000", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1331, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4256", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1313, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4512", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1307, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4768", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1301, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5024", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5280", - "sample document": { - "sample identifier": "Plate1 K1", - "location identifier": "K1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.127, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_161", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_417", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_673", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_929", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1185", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.141, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1441", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1697", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1953", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2209", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2465", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2721", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2977", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3233", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3489", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3745", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4001", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4257", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4513", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1362, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4769", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1345, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5025", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1326, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5281", - "sample document": { - "sample identifier": "Plate1 K2", - "location identifier": "K2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.131, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_162", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_418", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_674", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_930", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1186", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1442", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0975, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1698", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1954", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0988, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2210", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0988, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2466", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2722", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2978", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3234", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3490", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3746", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4002", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4258", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4514", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4770", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5026", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5282", - "sample document": { - "sample identifier": "Plate1 K3", - "location identifier": "K3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_163", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_419", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0979, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_675", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_931", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1187", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1443", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1699", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1955", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2211", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2467", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2723", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2979", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0988, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3235", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3491", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3747", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4003", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4259", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4515", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4771", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5027", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5283", - "sample document": { - "sample identifier": "Plate1 K4", - "location identifier": "K4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_164", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_420", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_676", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_932", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1188", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1444", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1700", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1956", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0957, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2212", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2468", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2724", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2980", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3236", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3492", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0975, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3748", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4004", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4260", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4516", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4772", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5028", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5284", - "sample document": { - "sample identifier": "Plate1 K5", - "location identifier": "K5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_165", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_421", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_677", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_933", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1189", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1445", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1701", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1957", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2213", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2469", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2725", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2981", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3237", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3493", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3749", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4005", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4261", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4517", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4773", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5029", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5285", - "sample document": { - "sample identifier": "Plate1 K6", - "location identifier": "K6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_166", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.117, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_422", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_678", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1192, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_934", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1212, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1190", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.121, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1446", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1197, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1702", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1958", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2214", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2470", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1186, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2726", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1189, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2982", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3238", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1183, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3494", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1181, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3750", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4006", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1164, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4262", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.116, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4518", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4774", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5030", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1139, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5286", - "sample document": { - "sample identifier": "Plate1 K7", - "location identifier": "K7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_167", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1179, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_423", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1189, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_679", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1193, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_935", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1191", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1191, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1447", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1703", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1194, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1959", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2215", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1191, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2471", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1198, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2727", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1198, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2983", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1194, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3239", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3495", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1181, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3751", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1181, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4007", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1175, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4263", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4519", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1164, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4775", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1165, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5031", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5287", - "sample document": { - "sample identifier": "Plate1 K8", - "location identifier": "K8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_168", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_424", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_680", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0995, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_936", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1192", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1448", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1704", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1960", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2216", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2472", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2728", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2984", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3240", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3496", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3752", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4008", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4264", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4520", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4776", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5032", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5288", - "sample document": { - "sample identifier": "Plate1 K9", - "location identifier": "K9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_169", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_425", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_681", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_937", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1193", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1449", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1705", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1961", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2217", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2473", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2729", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2985", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3241", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3497", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3753", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4009", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4265", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4521", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4777", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5033", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5289", - "sample document": { - "sample identifier": "Plate1 K10", - "location identifier": "K10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_170", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_426", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_682", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_938", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1194", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1450", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1706", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1962", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2218", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2474", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2730", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2986", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3242", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3498", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3754", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4010", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4266", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4522", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4778", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5034", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5290", - "sample document": { - "sample identifier": "Plate1 K11", - "location identifier": "K11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_171", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_427", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_683", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_939", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1195", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1451", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1707", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1963", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2219", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2475", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2731", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2987", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3243", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3499", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3755", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4011", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4267", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4523", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4779", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5035", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5291", - "sample document": { - "sample identifier": "Plate1 K12", - "location identifier": "K12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 559.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_172", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1894, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_428", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_684", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_940", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1956, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1196", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1967, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1452", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1978, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1708", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1964", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1961, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2220", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1934, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2476", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1912, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2732", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2988", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1837, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3244", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1804, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3500", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1757, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3756", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1724, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4012", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1691, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4268", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1654, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4524", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1614, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4780", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1578, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5036", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1535, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5292", - "sample document": { - "sample identifier": "Plate1 K13", - "location identifier": "K13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1498, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_173", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_429", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_685", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_941", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1197", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1975, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1453", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1709", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1965", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2221", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1902, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2477", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1867, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2733", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.183, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2989", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1789, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3245", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1755, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3501", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1713, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3757", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1677, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4013", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1638, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4269", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.16, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4525", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1566, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4781", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1528, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5037", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.149, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5293", - "sample document": { - "sample identifier": "Plate1 K14", - "location identifier": "K14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_174", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_430", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_686", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_942", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1198", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1454", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1710", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1966", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2222", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2478", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2734", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2990", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3246", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3502", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3758", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4014", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4270", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4526", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4782", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5038", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5294", - "sample document": { - "sample identifier": "Plate1 K15", - "location identifier": "K15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_175", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_431", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0506, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_687", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0504, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_943", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0505, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1199", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1455", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1711", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0501, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1967", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.05, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2223", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0502, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2479", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2735", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2991", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3247", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3503", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0495, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3759", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4015", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4271", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4527", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0492, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4783", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0491, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5039", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5295", - "sample document": { - "sample identifier": "Plate1 K16", - "location identifier": "K16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0494, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_176", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1365, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_432", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1338, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_688", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1337, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_944", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1353, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1200", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1375, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1456", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1712", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1968", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1387, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2224", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2480", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2736", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.139, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2992", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1378, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3248", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1366, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3504", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1353, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3760", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1346, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4016", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1339, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4272", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1315, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4528", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1298, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4784", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1284, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5040", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1268, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5296", - "sample document": { - "sample identifier": "Plate1 L1", - "location identifier": "L1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1255, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 543.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_177", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_433", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_689", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_945", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1201", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1457", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1713", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1969", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2225", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2481", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2737", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2993", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3249", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3505", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3761", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0448, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4017", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4273", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4529", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4785", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5041", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5297", - "sample document": { - "sample identifier": "Plate1 L2", - "location identifier": "L2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_178", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_434", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_690", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_946", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1202", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1458", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1714", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1970", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2226", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2482", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2738", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2994", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3250", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3506", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3762", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4018", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4274", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4530", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4786", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5042", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5298", - "sample document": { - "sample identifier": "Plate1 L3", - "location identifier": "L3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_179", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_435", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_691", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_947", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1203", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1459", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1715", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1971", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2227", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2483", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2739", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2995", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3251", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3507", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3763", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4019", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4275", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4531", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4787", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5043", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5299", - "sample document": { - "sample identifier": "Plate1 L4", - "location identifier": "L4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_180", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_436", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_692", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_948", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1204", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1460", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1716", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1972", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2228", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2484", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2740", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2996", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3252", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3508", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3764", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4020", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4276", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4532", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4788", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5044", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5300", - "sample document": { - "sample identifier": "Plate1 L5", - "location identifier": "L5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_181", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_437", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_693", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_949", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1205", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1461", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0442, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1717", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1973", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2229", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2485", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2741", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2997", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3253", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3509", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3765", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4021", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4277", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4533", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4789", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5045", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5301", - "sample document": { - "sample identifier": "Plate1 L6", - "location identifier": "L6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_182", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_438", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_694", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_950", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1192, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1206", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1191, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1462", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1191, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1718", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1182, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1974", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1177, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2230", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1175, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2486", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1178, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2742", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2998", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1192, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3254", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1188, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3510", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3766", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1164, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4022", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1156, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4278", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1154, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4534", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1151, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4790", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1142, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5046", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5302", - "sample document": { - "sample identifier": "Plate1 L7", - "location identifier": "L7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1141, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_183", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0601, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_439", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0599, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_695", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0597, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_951", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0597, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1207", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0594, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1463", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0594, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1719", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0592, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1975", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0591, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2231", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0589, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2487", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0589, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2743", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0587, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2999", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0586, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3255", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0586, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3511", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0585, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3767", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0583, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4023", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0583, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4279", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0582, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4535", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4791", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5047", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0577, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5303", - "sample document": { - "sample identifier": "Plate1 L8", - "location identifier": "L8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0575, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_184", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_440", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_696", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_952", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1208", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1464", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1720", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1976", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2232", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2488", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2744", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3000", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3256", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3512", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3768", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4024", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4280", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4536", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4792", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5048", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5304", - "sample document": { - "sample identifier": "Plate1 L9", - "location identifier": "L9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_185", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_441", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_697", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_953", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1209", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1465", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0453, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1721", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1977", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2233", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2489", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2745", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0447, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3001", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3257", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3513", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3769", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4025", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4281", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4537", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4793", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0439, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5049", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5305", - "sample document": { - "sample identifier": "Plate1 L10", - "location identifier": "L10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_186", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_442", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_698", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_954", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1210", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1466", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1722", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1978", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2234", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2490", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2746", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3002", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3258", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3514", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3770", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4026", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4282", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4538", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4794", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5050", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5306", - "sample document": { - "sample identifier": "Plate1 L11", - "location identifier": "L11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_187", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_443", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_699", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_955", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0461, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1211", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0459, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1467", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0458, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1723", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1979", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2235", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2491", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0451, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2747", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3003", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3259", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3515", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3771", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4027", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4283", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4539", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4795", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5051", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0438, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5307", - "sample document": { - "sample identifier": "Plate1 L12", - "location identifier": "L12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_188", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1927, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_444", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1928, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_700", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1924, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_956", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1212", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1937, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1468", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1935, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1724", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1980", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1882, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2236", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1853, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2492", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1836, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2748", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.181, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3004", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1775, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3260", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1752, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3516", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1713, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3772", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1688, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4028", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1662, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4284", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1629, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4540", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4796", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1556, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5052", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1514, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5308", - "sample document": { - "sample identifier": "Plate1 L13", - "location identifier": "L13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_189", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_445", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_701", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_957", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1213", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1469", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1725", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1981", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2237", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2493", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2749", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0493, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3005", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3261", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0484, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3517", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3773", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4029", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4285", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4541", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4797", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5053", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5309", - "sample document": { - "sample identifier": "Plate1 L14", - "location identifier": "L14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_190", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_446", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0483, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_702", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0481, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_958", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1214", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0479, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1470", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0478, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1726", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0476, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1982", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2238", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2494", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2750", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3006", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3262", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3518", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0471, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3774", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4030", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4286", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0467, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4542", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0468, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4798", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5054", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0464, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5310", - "sample document": { - "sample identifier": "Plate1 L15", - "location identifier": "L15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_191", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0539, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_447", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_703", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0539, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_959", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0539, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1215", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0537, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1471", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0535, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1727", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0535, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1983", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0535, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2239", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0536, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2495", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0534, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2751", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3007", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3263", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0533, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3519", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0528, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3775", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4031", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0527, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4287", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0526, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4543", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0527, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4799", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0526, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5055", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0528, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5311", - "sample document": { - "sample identifier": "Plate1 L16", - "location identifier": "L16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0528, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_192", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_448", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0875, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_704", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0883, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_960", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1216", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0882, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1472", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0879, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1728", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0889, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1984", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2240", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0897, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2496", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0908, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2752", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0919, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3008", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0929, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3264", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3520", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3776", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4032", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0924, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4288", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0913, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4544", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4800", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0916, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5056", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5312", - "sample document": { - "sample identifier": "Plate1 M1", - "location identifier": "M1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0919, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_193", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0927, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_449", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0929, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_705", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_961", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1217", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1473", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1729", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0945, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1985", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2241", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0931, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2497", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0922, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2753", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0917, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3009", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3265", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0945, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3521", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0957, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3777", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4033", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4289", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4545", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4801", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5057", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5313", - "sample document": { - "sample identifier": "Plate1 M2", - "location identifier": "M2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_194", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_450", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.099, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_706", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_962", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1218", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1474", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1730", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1986", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2242", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2498", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2754", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3010", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3266", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3522", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3778", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4034", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4290", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4546", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4802", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5058", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5314", - "sample document": { - "sample identifier": "Plate1 M3", - "location identifier": "M3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 551.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_195", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_451", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1027, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_707", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_963", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1219", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1475", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1731", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1987", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2243", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2499", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2755", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3011", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3267", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3523", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3779", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4035", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4291", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4547", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4803", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5059", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5315", - "sample document": { - "sample identifier": "Plate1 M4", - "location identifier": "M4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_196", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0893, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_452", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0895, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_708", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0901, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_964", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0896, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1220", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1476", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0889, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1732", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0881, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1988", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0874, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2244", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0861, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2500", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0871, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2756", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0883, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3012", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0894, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3268", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0903, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3524", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3780", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0904, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4036", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0908, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4292", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0911, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4548", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4804", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0915, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5060", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5316", - "sample document": { - "sample identifier": "Plate1 M5", - "location identifier": "M5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_197", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0894, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_453", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_709", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0891, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_965", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1221", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0878, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1477", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0875, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1733", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0864, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1989", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0861, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2245", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0875, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2501", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0885, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2757", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.09, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3013", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0902, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3269", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0894, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3525", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0889, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3781", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0893, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4037", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0902, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4293", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4549", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4805", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5061", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0895, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5317", - "sample document": { - "sample identifier": "Plate1 M6", - "location identifier": "M6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0899, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_198", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_454", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_710", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_966", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1222", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1478", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1734", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1990", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2246", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2502", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2758", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3014", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3270", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1089, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3526", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3782", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4038", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4294", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4550", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4806", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5062", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5318", - "sample document": { - "sample identifier": "Plate1 M7", - "location identifier": "M7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_199", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_455", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_711", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_967", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1223", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1479", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1735", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1991", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2247", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2503", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2759", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3015", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3271", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3527", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3783", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4039", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4295", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4551", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4807", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5063", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5319", - "sample document": { - "sample identifier": "Plate1 M8", - "location identifier": "M8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0972, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_200", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_456", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_712", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_968", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1224", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1480", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1736", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1992", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2248", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2504", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2760", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3016", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3272", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3528", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3784", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4040", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4296", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4552", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4808", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5064", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5320", - "sample document": { - "sample identifier": "Plate1 M9", - "location identifier": "M9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_201", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0914, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_457", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_713", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_969", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0957, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1225", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0985, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1481", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1737", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1993", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0991, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2249", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2505", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0938, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2761", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3017", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3273", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3529", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3785", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0994, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4041", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4297", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4553", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4809", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5065", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5321", - "sample document": { - "sample identifier": "Plate1 M10", - "location identifier": "M10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_202", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0871, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_458", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0886, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_714", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0901, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_970", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0917, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1226", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1482", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1738", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0911, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1994", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2250", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2506", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2762", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0931, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3018", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0926, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3274", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0919, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3530", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0919, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3786", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0915, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4042", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0917, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4298", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0914, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4554", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0912, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4810", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5066", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0906, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5322", - "sample document": { - "sample identifier": "Plate1 M11", - "location identifier": "M11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_203", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0849, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_459", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_715", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0852, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_971", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0873, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1227", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0904, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1483", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1739", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0915, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1995", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0897, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2251", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0898, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2507", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0906, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2763", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3019", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0923, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3275", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3531", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0934, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3787", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0929, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4043", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4299", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4555", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4811", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5067", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0945, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5323", - "sample document": { - "sample identifier": "Plate1 M12", - "location identifier": "M12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_204", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1509, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_460", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1526, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_716", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1515, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_972", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1482, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1228", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1484", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1740", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1485, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1996", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1502, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2252", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1503, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2508", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1499, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2764", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.149, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3020", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3276", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1454, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3532", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3788", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4044", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1372, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4300", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1334, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4556", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1304, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4812", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1272, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5068", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1244, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5324", - "sample document": { - "sample identifier": "Plate1 M13", - "location identifier": "M13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1211, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_205", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1633, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_461", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1639, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_717", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.164, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_973", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1633, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1229", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1631, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1485", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1642, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1741", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1636, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1997", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.161, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2253", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1581, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2509", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1566, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2765", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1554, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3021", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1534, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3277", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1517, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3533", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1489, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3789", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1462, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4045", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4301", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4557", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1373, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4813", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5069", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1308, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5325", - "sample document": { - "sample identifier": "Plate1 M14", - "location identifier": "M14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1271, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_206", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_462", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_718", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_974", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1230", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1486", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1742", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1998", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2254", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2510", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2766", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3022", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3278", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3534", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3790", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4046", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4302", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4558", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4814", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5070", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5326", - "sample document": { - "sample identifier": "Plate1 M15", - "location identifier": "M15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_207", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_463", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_719", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_975", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1231", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1487", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1743", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1999", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2255", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2511", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2767", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3023", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3279", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3535", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3791", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4047", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4303", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4559", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4815", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5071", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5327", - "sample document": { - "sample identifier": "Plate1 M16", - "location identifier": "M16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_208", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_464", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.087, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_720", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0871, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_976", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0881, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1232", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0889, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1488", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0897, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1744", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2000", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2256", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2512", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0898, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2768", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3024", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3280", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0897, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3536", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.09, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3792", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4048", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4304", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0906, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4560", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4816", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0915, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5072", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5328", - "sample document": { - "sample identifier": "Plate1 N1", - "location identifier": "N1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0908, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_209", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_465", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_721", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_977", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1233", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1489", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1745", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2001", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2257", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2513", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2769", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0394, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3025", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3281", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3537", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3793", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4049", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4305", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4561", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4817", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0389, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5073", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0388, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5329", - "sample document": { - "sample identifier": "Plate1 N2", - "location identifier": "N2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0388, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_210", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0996, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_466", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_722", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_978", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1234", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1490", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1746", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2002", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2258", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2514", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2770", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3026", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3282", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3538", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3794", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4050", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4306", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4562", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0997, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4818", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5074", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0975, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5330", - "sample document": { - "sample identifier": "Plate1 N3", - "location identifier": "N3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0964, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 545.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_211", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_467", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_723", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_979", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1235", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1491", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1747", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2003", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2259", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2515", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2771", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3027", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3283", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3539", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3795", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4051", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4307", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4563", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4819", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5075", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5331", - "sample document": { - "sample identifier": "Plate1 N4", - "location identifier": "N4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_212", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0922, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_468", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_724", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0939, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_980", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1236", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1492", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0928, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1748", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0928, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2004", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0923, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2260", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2516", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2772", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3028", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0912, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3284", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3540", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0925, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3796", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0914, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4052", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4308", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0896, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4564", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4820", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5076", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5332", - "sample document": { - "sample identifier": "Plate1 N5", - "location identifier": "N5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0893, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 529.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_213", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_469", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_725", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_981", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1237", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1493", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1749", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2005", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0394, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2261", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2517", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2773", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3029", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3285", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3541", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3797", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0389, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4053", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0389, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4309", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0388, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4565", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0385, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4821", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5077", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5333", - "sample document": { - "sample identifier": "Plate1 N6", - "location identifier": "N6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_214", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_470", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_726", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_982", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1238", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1494", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1750", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2006", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2262", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2518", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2774", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3030", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3286", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3542", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3798", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4054", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4310", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4566", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4822", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5078", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5334", - "sample document": { - "sample identifier": "Plate1 N7", - "location identifier": "N7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_215", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_471", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_727", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_983", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1239", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1495", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1751", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2007", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2263", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2519", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2775", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3031", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3287", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3543", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3799", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4055", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4311", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4567", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4823", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5079", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5335", - "sample document": { - "sample identifier": "Plate1 N8", - "location identifier": "N8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_216", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_472", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_728", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_984", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1240", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1496", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1752", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2008", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2264", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1069, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2520", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2776", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3032", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3288", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3544", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3800", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1074, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4056", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4312", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4568", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4824", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5080", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1088, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5336", - "sample document": { - "sample identifier": "Plate1 N9", - "location identifier": "N9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 561.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_217", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_473", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_729", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_985", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1241", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1497", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1753", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2009", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2265", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2521", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2777", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3033", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3289", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3545", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3801", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4057", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0396, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4313", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4569", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0394, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4825", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5081", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5337", - "sample document": { - "sample identifier": "Plate1 N10", - "location identifier": "N10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_218", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0888, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_474", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0893, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_730", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_986", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0904, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1242", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0903, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1498", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0907, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1754", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0914, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2010", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0906, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2266", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2522", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0892, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2778", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0893, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3034", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0897, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3290", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0905, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3546", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0917, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3802", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4058", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4314", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4570", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4826", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0933, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5082", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0924, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5338", - "sample document": { - "sample identifier": "Plate1 N11", - "location identifier": "N11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0918, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_219", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_475", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_731", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_987", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1243", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1499", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1755", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0398, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2011", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0397, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2267", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0395, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2523", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2779", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0393, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3035", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0392, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3291", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0391, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3547", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3803", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0388, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4059", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0389, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4315", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0389, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4571", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0387, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4827", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0386, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5083", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5339", - "sample document": { - "sample identifier": "Plate1 N12", - "location identifier": "N12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0384, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_220", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1659, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_476", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1658, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_732", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1654, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_988", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1663, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1244", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1500", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1667, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1756", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1654, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2012", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.163, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2268", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.16, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2524", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1575, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2780", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1551, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3036", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1521, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3292", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1496, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3548", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3804", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4060", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4316", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1375, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4572", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1343, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4828", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1306, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5084", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1272, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5340", - "sample document": { - "sample identifier": "Plate1 N13", - "location identifier": "N13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1237, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_221", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_477", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_733", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_989", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1245", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1501", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1757", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2013", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2269", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2525", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2781", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3037", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3293", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3549", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3805", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4061", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4317", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4573", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4829", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5085", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5341", - "sample document": { - "sample identifier": "Plate1 N14", - "location identifier": "N14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_222", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_478", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_734", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_990", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1246", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1502", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1758", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2014", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2270", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2526", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2782", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3038", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3294", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3550", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3806", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4062", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4318", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4574", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4830", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5086", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5342", - "sample document": { - "sample identifier": "Plate1 N15", - "location identifier": "N15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.04, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_223", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_479", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_735", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_991", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1247", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1503", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1759", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2015", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2271", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2527", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2783", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3039", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3295", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3551", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3807", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4063", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4319", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4575", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4831", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5087", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0401, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5343", - "sample document": { - "sample identifier": "Plate1 N16", - "location identifier": "N16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0399, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_224", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_480", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_736", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0912, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_992", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0921, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1248", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0935, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1504", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0945, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1760", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2016", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0939, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2272", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0941, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2528", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2784", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3040", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0963, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3296", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0963, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3552", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3808", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4064", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0977, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4320", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4576", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4832", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0973, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5088", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0981, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5344", - "sample document": { - "sample identifier": "Plate1 O1", - "location identifier": "O1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0979, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_225", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0909, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_481", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0916, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_737", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0923, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_993", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1249", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0951, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1505", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1761", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2017", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2273", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2529", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0932, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2785", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0935, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3041", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0949, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3297", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3553", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3809", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4065", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4321", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0967, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4577", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0955, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4833", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5089", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0953, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5345", - "sample document": { - "sample identifier": "Plate1 O2", - "location identifier": "O2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_226", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0959, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_482", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_738", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0976, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_994", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1250", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1506", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1762", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2018", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2274", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2530", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2786", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3042", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3298", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3554", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3810", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4066", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4322", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4578", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4834", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5090", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5346", - "sample document": { - "sample identifier": "Plate1 O3", - "location identifier": "O3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0995, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 547.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_227", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_483", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_739", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_995", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1251", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1507", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1065, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1763", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2019", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2275", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2531", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2787", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3043", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3299", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0998, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3555", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3811", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4067", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4323", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4579", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4835", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1029, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5091", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5347", - "sample document": { - "sample identifier": "Plate1 O4", - "location identifier": "O4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_228", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_484", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_740", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_996", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1014, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1252", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1508", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1764", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2020", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2276", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2532", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2788", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3044", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3300", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3556", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3812", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4068", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1081, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4324", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4580", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4836", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5092", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5348", - "sample document": { - "sample identifier": "Plate1 O5", - "location identifier": "O5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_229", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_485", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_741", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_997", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1253", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1509", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1765", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2021", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2277", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2533", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2789", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3045", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3301", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3557", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3813", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4069", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4325", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4581", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4837", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5093", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5349", - "sample document": { - "sample identifier": "Plate1 O6", - "location identifier": "O6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_230", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0999, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_486", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_742", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_998", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1254", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1510", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1766", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2022", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1083, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2278", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2534", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2790", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3046", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3302", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3558", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3814", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4070", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4326", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1013, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4582", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4838", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1008, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5094", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5350", - "sample document": { - "sample identifier": "Plate1 O7", - "location identifier": "O7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0993, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 537.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_231", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1096, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_487", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_743", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_999", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.111, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1255", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1511", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1767", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1127, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2023", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.114, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2279", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1144, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2535", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1134, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2791", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3047", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1125, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3303", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1119, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3559", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1124, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3815", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1112, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4071", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.11, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4327", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4583", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1085, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4839", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5095", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1084, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5351", - "sample document": { - "sample identifier": "Plate1 O8", - "location identifier": "O8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1079, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 541.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_232", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_488", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1063, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_744", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1000", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1052, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1256", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1512", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1768", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2024", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2280", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2536", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2792", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3048", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3304", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3560", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1028, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3816", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1037, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4072", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4328", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1021, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4584", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.101, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4840", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5096", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0987, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5352", - "sample document": { - "sample identifier": "Plate1 O9", - "location identifier": "O9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0989, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 535.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_233", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0961, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_489", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_745", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0982, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1001", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1002, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1257", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1513", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1769", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.102, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2025", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1009, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2281", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2537", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2793", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3049", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1003, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3305", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3561", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1001, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3817", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0992, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4073", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.098, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4329", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0965, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4585", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0962, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4841", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5097", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5353", - "sample document": { - "sample identifier": "Plate1 O10", - "location identifier": "O10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 533.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_234", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_490", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_746", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1002", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1258", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1514", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1770", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1017, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2026", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2282", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2538", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2794", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1018, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3050", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1049, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3306", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3562", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3818", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4074", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1091, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4330", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4586", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1076, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4842", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1077, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5098", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1068, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5354", - "sample document": { - "sample identifier": "Plate1 O11", - "location identifier": "O11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1067, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_235", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_491", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_747", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1004, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1003", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1011, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1259", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1007, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1515", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1771", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0954, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2027", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0971, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2283", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0995, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2539", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1005, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2795", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1006, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3051", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1015, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3307", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3563", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3819", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4075", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4331", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4587", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4843", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5099", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5355", - "sample document": { - "sample identifier": "Plate1 O12", - "location identifier": "O12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 563.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_236", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1183, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_492", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1192, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_748", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1198, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1004", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1206, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1260", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1203, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1516", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1193, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1772", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1177, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2028", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1161, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2284", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1143, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2540", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1133, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2796", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1131, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3052", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1129, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3308", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1132, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3564", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3820", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4076", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4332", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1174, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4588", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4844", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1158, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5100", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1155, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5356", - "sample document": { - "sample identifier": "Plate1 O13", - "location identifier": "O13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1147, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_237", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1184, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_493", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1195, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_749", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1187, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1005", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1189, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1261", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1185, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1517", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1182, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1773", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.118, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2029", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1176, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2285", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1177, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2541", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1173, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2797", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3053", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1169, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3309", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3565", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1167, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3821", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1161, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4077", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1159, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4333", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1144, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4589", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1137, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4845", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1131, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5101", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1115, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5357", - "sample document": { - "sample identifier": "Plate1 O14", - "location identifier": "O14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1097, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 527.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_238", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_494", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_750", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0474, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1006", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0473, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1262", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0475, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1518", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0472, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1774", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2030", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0469, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2286", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.047, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2542", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2798", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3054", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0466, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3310", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3566", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0465, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3822", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0463, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4078", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4334", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4590", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0457, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4846", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5102", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5358", - "sample document": { - "sample identifier": "Plate1 O15", - "location identifier": "O15", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_239", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_495", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_751", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1007", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1263", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1519", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1775", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2031", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2287", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2543", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2799", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3055", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3311", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3567", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3823", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4079", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4335", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4591", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4847", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5103", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5359", - "sample document": { - "sample identifier": "Plate1 O16", - "location identifier": "O16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0405, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_240", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0917, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_496", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0926, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_752", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1008", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1264", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1520", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0942, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1776", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0939, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2032", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0936, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2288", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0943, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2544", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0957, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2800", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3056", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0958, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3312", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0961, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3568", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0968, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3824", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0974, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4080", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0984, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4336", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0969, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4592", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0952, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4848", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5104", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0944, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5360", - "sample document": { - "sample identifier": "Plate1 P1", - "location identifier": "P1", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0947, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 555.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_241", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_497", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_753", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1009", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1265", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1521", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1777", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2033", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2289", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2545", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2801", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3057", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3313", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3569", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3825", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4081", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4337", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4593", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4849", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5105", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5361", - "sample document": { - "sample identifier": "Plate1 P2", - "location identifier": "P2", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_242", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1024, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_498", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_754", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1010", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1266", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1522", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1778", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2034", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2290", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2546", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2802", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3058", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3314", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3570", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.107, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3826", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4082", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4338", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4594", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4850", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5106", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5362", - "sample document": { - "sample identifier": "Plate1 P3", - "location identifier": "P3", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 553.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_243", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_499", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_755", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1011", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1267", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1523", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1779", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2035", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2291", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2547", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2803", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3059", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3315", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3571", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3827", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4083", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4339", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4595", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4851", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5107", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5363", - "sample document": { - "sample identifier": "Plate1 P4", - "location identifier": "P4", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_244", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0946, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_500", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0966, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_756", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0986, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1012", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1268", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1016, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1524", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1780", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1026, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2036", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2292", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2548", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2804", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3060", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1058, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3316", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.106, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3572", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3828", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4084", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4340", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1064, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4596", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4852", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5108", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5364", - "sample document": { - "sample identifier": "Plate1 P5", - "location identifier": "P5", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 557.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_245", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_501", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_757", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1013", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1269", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1525", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1781", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2037", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2293", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2549", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2805", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3061", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3317", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3573", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3829", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4085", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4341", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0409, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4597", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4853", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5109", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0406, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5365", - "sample document": { - "sample identifier": "Plate1 P6", - "location identifier": "P6", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_246", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1031, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_502", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_758", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1014", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1072, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1270", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1526", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1782", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2038", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2294", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1103, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2550", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1095, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2806", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3062", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3318", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1062, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3574", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1054, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3830", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4086", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4342", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4598", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1034, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4854", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5110", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5366", - "sample document": { - "sample identifier": "Plate1 P7", - "location identifier": "P7", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1025, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 539.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_247", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_503", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_759", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1015", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1271", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1527", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1783", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2039", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2295", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2551", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2807", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3063", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3319", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3575", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3831", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4087", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0414, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4343", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4599", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4855", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5111", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5367", - "sample document": { - "sample identifier": "Plate1 P8", - "location identifier": "P8", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0407, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 531.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_248", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1093, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_504", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_760", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1061, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1016", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1051, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1272", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1066, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1528", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1056, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1784", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1044, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2040", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1053, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2296", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1057, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2552", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1082, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2808", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1078, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3064", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1071, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3320", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1059, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3576", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1043, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3832", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.105, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4088", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1035, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4344", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1041, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4600", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1039, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4856", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1048, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5112", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.104, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5368", - "sample document": { - "sample identifier": "Plate1 P9", - "location identifier": "P9", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_249", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_505", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_761", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1017", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1273", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1529", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1785", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2041", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2297", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2553", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2809", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3065", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3321", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3577", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3833", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4089", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4345", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4601", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4857", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0422, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5113", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5369", - "sample document": { - "sample identifier": "Plate1 P10", - "location identifier": "P10", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 525.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_250", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1045, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_506", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_762", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1036, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1018", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1274", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1530", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1033, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1786", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1023, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2042", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1032, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2298", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1046, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2554", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1038, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2810", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1019, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3066", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1012, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3322", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1022, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3578", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1055, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3834", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1073, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4090", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.108, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4346", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1075, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4602", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1086, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4858", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1092, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5114", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.109, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5370", - "sample document": { - "sample identifier": "Plate1 P11", - "location identifier": "P11", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1094, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - } - ], - "measurement time": "2021-06-11T13:11:11+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, - "container type": "well plate" - }, - "custom information document": { - "maximum wavelength signal": { - "value": 565.0, - "unit": "nm" - } - } - }, - { - "measurement aggregate document": { - "measurement document": [ - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_251", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_507", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_763", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1019", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1275", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0435, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1531", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1787", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2043", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.2, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2299", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0431, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2555", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2811", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0429, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3067", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3323", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0428, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3579", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3835", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4091", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4347", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4603", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4859", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0421, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5115", - "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.4, - "unit": "degC" - } - }, + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5371", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_174", "sample document": { - "sample identifier": "Plate1 P12", - "location identifier": "P12", + "location identifier": "K15", + "sample identifier": "Plate1 K15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0457, 0.0456, 0.0454, 0.0454, 0.0452, 0.0451, 0.0451, 0.045, 0.0448, 0.0448, 0.0447, 0.0446, 0.0446, 0.0446, 0.0445, 0.0445, 0.0444, 0.0443, 0.0442, 0.0441, 0.044] + ] + } } } ], @@ -152709,7 +11372,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 531.0, + "value": 525.0, "unit": "nm" } } @@ -152722,587 +11385,1281 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_252", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_175", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "K16", + "sample identifier": "Plate1 K16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1221, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0505, 0.0506, 0.0504, 0.0505, 0.0503, 0.0501, 0.0501, 0.05, 0.0502, 0.0499, 0.0495, 0.0496, 0.0499, 0.0495, 0.0494, 0.0492, 0.0492, 0.0492, 0.0491, 0.0493, 0.0494] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_508", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_176", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L1", + "sample identifier": "Plate1 L1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1227, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1365, 0.1338, 0.1337, 0.1353, 0.1375, 0.1386, 0.1384, 0.1387, 0.1393, 0.1395, 0.139, 0.1378, 0.1366, 0.1353, 0.1346, 0.1339, 0.1315, 0.1298, 0.1284, 0.1268, 0.1255] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_764", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_177", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L2", + "sample identifier": "Plate1 L2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1233, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0471, 0.047, 0.0468, 0.0466, 0.0464, 0.0463, 0.0461, 0.0459, 0.0456, 0.0455, 0.0454, 0.0452, 0.0452, 0.0449, 0.0448, 0.0447, 0.0445, 0.0443, 0.0441, 0.044, 0.0438] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1020", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_178", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L3", + "sample identifier": "Plate1 L3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.124, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0989, 0.0997, 0.1006, 0.1015, 0.1007, 0.0996, 0.0994, 0.0997, 0.0998, 0.0993, 0.0998, 0.1004, 0.1016, 0.1019, 0.1032, 0.1044, 0.1049, 0.1045, 0.1049, 0.104, 0.1037] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1276", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_179", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L4", + "sample identifier": "Plate1 L4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1229, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0456, 0.0455, 0.0452, 0.0451, 0.0449, 0.0447, 0.0446, 0.0445, 0.0443, 0.0442, 0.0441, 0.044, 0.0438, 0.0439, 0.0437, 0.0436, 0.0435, 0.0433, 0.0433, 0.0432, 0.0431] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1532", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_180", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L5", + "sample identifier": "Plate1 L5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1223, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0985, 0.0982, 0.0984, 0.0984, 0.0987, 0.0994, 0.1001, 0.1013, 0.1023, 0.1029, 0.1033, 0.104, 0.1047, 0.1058, 0.1062, 0.106, 0.1056, 0.1052, 0.1048, 0.1047, 0.1047] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1788", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_181", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L6", + "sample identifier": "Plate1 L6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1226, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0447, 0.0445, 0.0444, 0.0443, 0.0442, 0.0442, 0.044, 0.0439, 0.0437, 0.0436, 0.0435, 0.0434, 0.0435, 0.0435, 0.0433, 0.0434, 0.0432, 0.0431, 0.0431, 0.0429, 0.0428] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2044", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_182", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L7", + "sample identifier": "Plate1 L7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1227, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2300", - "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.1226, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1184, 0.1187, 0.1184, 0.1192, 0.1191, 0.1191, 0.1182, 0.1177, 0.1175, 0.1178, 0.1187, 0.1192, 0.1188, 0.118, 0.1164, 0.1156, 0.1154, 0.1151, 0.1142, 0.1147, 0.1141] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2556", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_183", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L8", + "sample identifier": "Plate1 L8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1222, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0601, 0.0599, 0.0597, 0.0597, 0.0594, 0.0594, 0.0592, 0.0591, 0.0589, 0.0589, 0.0587, 0.0586, 0.0586, 0.0585, 0.0583, 0.0583, 0.0582, 0.058, 0.058, 0.0577, 0.0575] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2812", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_184", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L9", + "sample identifier": "Plate1 L9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1217, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1055, 0.1059, 0.1054, 0.1048, 0.1042, 0.1038, 0.1028, 0.1025, 0.1025, 0.1031, 0.1031, 0.1036, 0.1032, 0.1034, 0.1036, 0.1043, 0.1044, 0.1039, 0.1039, 0.1032, 0.1027] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3068", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_185", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L10", + "sample identifier": "Plate1 L10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1219, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0461, 0.0459, 0.0457, 0.0456, 0.0454, 0.0453, 0.0451, 0.045, 0.0449, 0.0447, 0.0447, 0.0445, 0.0445, 0.0444, 0.0443, 0.0443, 0.0441, 0.044, 0.0439, 0.0438, 0.0436] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3324", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_186", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L11", + "sample identifier": "Plate1 L11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1218, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1012, 0.1021, 0.1025, 0.103, 0.1034, 0.103, 0.1016, 0.1017, 0.1021, 0.1021, 0.1025, 0.1035, 0.103, 0.1029, 0.103, 0.1028, 0.1036, 0.1038, 0.1043, 0.1043, 0.1038] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3580", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_187", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L12", + "sample identifier": "Plate1 L12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1217, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0467, 0.0464, 0.0462, 0.0461, 0.0459, 0.0458, 0.0455, 0.0454, 0.0452, 0.0451, 0.045, 0.0449, 0.0449, 0.0446, 0.0444, 0.0444, 0.0443, 0.0441, 0.044, 0.0438, 0.0437] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3836", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_188", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L13", + "sample identifier": "Plate1 L13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1217, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1927, 0.1928, 0.1924, 0.1942, 0.1937, 0.1935, 0.1907, 0.1882, 0.1853, 0.1836, 0.181, 0.1775, 0.1752, 0.1713, 0.1688, 0.1662, 0.1629, 0.159, 0.1556, 0.1514, 0.1478] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4092", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_189", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L14", + "sample identifier": "Plate1 L14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1219, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0473, 0.0472, 0.0469, 0.047, 0.0468, 0.0467, 0.0465, 0.0465, 0.0464, 0.0465, 0.0493, 0.049, 0.0484, 0.048, 0.0479, 0.0479, 0.0478, 0.0476, 0.0473, 0.0472, 0.047] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4348", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_190", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L15", + "sample identifier": "Plate1 L15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1207, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0485, 0.0483, 0.0481, 0.048, 0.0479, 0.0478, 0.0476, 0.0475, 0.0474, 0.0473, 0.0473, 0.0472, 0.0472, 0.0471, 0.047, 0.0469, 0.0467, 0.0468, 0.0465, 0.0464, 0.0463] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4604", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_191", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "L16", + "sample identifier": "Plate1 L16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1199, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0539, 0.054, 0.0539, 0.0539, 0.0537, 0.0535, 0.0535, 0.0535, 0.0536, 0.0534, 0.053, 0.053, 0.0533, 0.0528, 0.053, 0.0527, 0.0526, 0.0527, 0.0526, 0.0528, 0.0528] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4860", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_192", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "M1", + "sample identifier": "Plate1 M1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1193, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.086, 0.0875, 0.0883, 0.089, 0.0882, 0.0879, 0.0889, 0.0892, 0.0897, 0.0908, 0.0919, 0.0929, 0.0921, 0.0918, 0.092, 0.0924, 0.0913, 0.0918, 0.0916, 0.0918, 0.0919] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5116", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_193", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "M2", + "sample identifier": "Plate1 M2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1183, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0927, 0.0929, 0.0932, 0.0944, 0.095, 0.0949, 0.0945, 0.094, 0.0931, 0.0922, 0.0917, 0.0925, 0.0945, 0.0957, 0.0965, 0.0972, 0.0973, 0.0965, 0.096, 0.0964, 0.0964] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5372", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_194", "sample document": { - "sample identifier": "Plate1 P13", - "location identifier": "P13", + "location identifier": "M3", + "sample identifier": "Plate1 M3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.1168, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0989, 0.099, 0.0992, 0.0997, 0.1004, 0.1009, 0.1016, 0.1019, 0.1021, 0.1017, 0.1021, 0.1019, 0.1022, 0.1024, 0.1019, 0.1018, 0.1022, 0.1013, 0.1012, 0.1007, 0.1002] + ] + } } } ], @@ -153315,7 +12672,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 531.0, + "value": 551.0, "unit": "nm" } } @@ -153328,587 +12685,1281 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_253", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_195", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M4", + "sample identifier": "Plate1 M4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0456, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1021, 0.1027, 0.1037, 0.1047, 0.1067, 0.1065, 0.1042, 0.1025, 0.1017, 0.102, 0.1033, 0.1044, 0.1043, 0.1042, 0.1037, 0.1033, 0.1034, 0.1039, 0.1046, 0.1045, 0.104] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_509", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_196", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M5", + "sample identifier": "Plate1 M5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0893, 0.0895, 0.0901, 0.0896, 0.0899, 0.0889, 0.0881, 0.0874, 0.0861, 0.0871, 0.0883, 0.0894, 0.0903, 0.0905, 0.0904, 0.0908, 0.0911, 0.0909, 0.0915, 0.0909, 0.0918] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_765", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_197", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M6", + "sample identifier": "Plate1 M6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0454, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0894, 0.0899, 0.0891, 0.088, 0.0878, 0.0875, 0.0864, 0.0861, 0.0875, 0.0885, 0.09, 0.0902, 0.0894, 0.0889, 0.0893, 0.0902, 0.0905, 0.0899, 0.0899, 0.0895, 0.0899] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1021", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_198", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M7", + "sample identifier": "Plate1 M7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1047, 0.1054, 0.1065, 0.1077, 0.1084, 0.1085, 0.1076, 0.1067, 0.1067, 0.1084, 0.109, 0.1089, 0.1089, 0.1082, 0.108, 0.1077, 0.1073, 0.1071, 0.1068, 0.1065, 0.1059] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1277", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_199", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M8", + "sample identifier": "Plate1 M8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0455, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1054, 0.1057, 0.1058, 0.1061, 0.1059, 0.1067, 0.1065, 0.1054, 0.1045, 0.1047, 0.1048, 0.1043, 0.1047, 0.1045, 0.1038, 0.103, 0.1022, 0.1008, 0.0993, 0.0985, 0.0972] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1533", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_200", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M9", + "sample identifier": "Plate1 M9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.104, 0.1053, 0.1063, 0.105, 0.1048, 0.1026, 0.1036, 0.1048, 0.1043, 0.1058, 0.1057, 0.1047, 0.1048, 0.103, 0.1049, 0.1048, 0.1058, 0.1058, 0.1067, 0.1046, 0.105] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1789", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_201", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M10", + "sample identifier": "Plate1 M10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0452, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0914, 0.092, 0.0932, 0.0957, 0.0985, 0.1008, 0.1014, 0.0991, 0.0953, 0.0938, 0.0942, 0.0964, 0.0976, 0.0984, 0.0994, 0.101, 0.1019, 0.1021, 0.1026, 0.1029, 0.1028] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2045", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_202", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M11", + "sample identifier": "Plate1 M11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.045, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0871, 0.0886, 0.0901, 0.0917, 0.0921, 0.0918, 0.0911, 0.0907, 0.0907, 0.0925, 0.0931, 0.0926, 0.0919, 0.0919, 0.0915, 0.0917, 0.0914, 0.0912, 0.091, 0.0906, 0.0905] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2301", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_203", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M12", + "sample identifier": "Plate1 M12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0449, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0849, 0.085, 0.0852, 0.0873, 0.0904, 0.0921, 0.0915, 0.0897, 0.0898, 0.0906, 0.0921, 0.0923, 0.0925, 0.0934, 0.0929, 0.0942, 0.0941, 0.094, 0.0943, 0.0945, 0.0941] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2557", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_204", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M13", + "sample identifier": "Plate1 M13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0446, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1509, 0.1526, 0.1515, 0.1482, 0.1469, 0.147, 0.1485, 0.1502, 0.1503, 0.1499, 0.149, 0.1473, 0.1454, 0.1425, 0.1396, 0.1372, 0.1334, 0.1304, 0.1272, 0.1244, 0.1211] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2813", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_205", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M14", + "sample identifier": "Plate1 M14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0445, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1633, 0.1639, 0.164, 0.1633, 0.1631, 0.1642, 0.1636, 0.161, 0.1581, 0.1566, 0.1554, 0.1534, 0.1517, 0.1489, 0.1462, 0.1433, 0.1403, 0.1373, 0.134, 0.1308, 0.1271] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3069", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_206", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M15", + "sample identifier": "Plate1 M15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0444, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0414, 0.0413, 0.041, 0.0411, 0.0409, 0.0409, 0.0408, 0.0407, 0.0405, 0.0404, 0.0405, 0.0403, 0.0403, 0.0402, 0.0402, 0.0402, 0.0401, 0.0401, 0.0399, 0.0398, 0.0397] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3325", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_207", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "M16", + "sample identifier": "Plate1 M16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3581", - "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0443, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0426, 0.0424, 0.0422, 0.0422, 0.042, 0.0419, 0.0418, 0.0417, 0.0416, 0.0415, 0.0414, 0.0413, 0.0412, 0.0411, 0.0409, 0.041, 0.0409, 0.0409, 0.0407, 0.0405, 0.0404] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3837", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_208", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N1", + "sample identifier": "Plate1 N1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0441, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.086, 0.087, 0.0871, 0.0881, 0.0889, 0.0897, 0.0905, 0.0905, 0.0892, 0.0898, 0.0909, 0.0905, 0.0897, 0.09, 0.0905, 0.0918, 0.0906, 0.0909, 0.0915, 0.091, 0.0908] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4093", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_209", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N2", + "sample identifier": "Plate1 N2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.044, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0405, 0.0403, 0.04, 0.0399, 0.0399, 0.0397, 0.0396, 0.0396, 0.0395, 0.0393, 0.0394, 0.0392, 0.0392, 0.0391, 0.039, 0.0391, 0.0391, 0.039, 0.0389, 0.0388, 0.0388] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4349", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_210", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N3", + "sample identifier": "Plate1 N3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0436, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0996, 0.1005, 0.1009, 0.1014, 0.1008, 0.1003, 0.1005, 0.1006, 0.1009, 0.1015, 0.1021, 0.102, 0.1019, 0.1017, 0.1014, 0.1011, 0.1007, 0.0997, 0.0986, 0.0975, 0.0964] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4605", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_211", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N4", + "sample identifier": "Plate1 N4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0437, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0411, 0.041, 0.0407, 0.0407, 0.0406, 0.0405, 0.0404, 0.0404, 0.0402, 0.0401, 0.0401, 0.04, 0.04, 0.04, 0.0399, 0.04, 0.04, 0.0398, 0.0397, 0.0398, 0.0396] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4861", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_212", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N5", + "sample identifier": "Plate1 N5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0434, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0922, 0.0933, 0.0939, 0.0932, 0.0925, 0.0928, 0.0928, 0.0923, 0.091, 0.0907, 0.0907, 0.0912, 0.0918, 0.0925, 0.0914, 0.0909, 0.0896, 0.0892, 0.0892, 0.0892, 0.0893] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5117", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_213", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N6", + "sample identifier": "Plate1 N6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0433, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0403, 0.0401, 0.0398, 0.0399, 0.0397, 0.0396, 0.0395, 0.0394, 0.0392, 0.0392, 0.0392, 0.0391, 0.039, 0.039, 0.0389, 0.0389, 0.0388, 0.0385, 0.0386, 0.0386, 0.0384] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5373", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_214", "sample document": { - "sample identifier": "Plate1 P14", - "location identifier": "P14", + "location identifier": "N7", + "sample identifier": "Plate1 N7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0432, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1052, 0.1049, 0.1049, 0.1047, 0.1045, 0.1051, 0.1054, 0.106, 0.1054, 0.1052, 0.1064, 0.1069, 0.1069, 0.1062, 0.1048, 0.103, 0.102, 0.1016, 0.1017, 0.1013, 0.1012] + ] + } } } ], @@ -153921,7 +13972,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 525.0, + "value": 547.0, "unit": "nm" } } @@ -153934,587 +13985,1346 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_254", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_215", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N8", + "sample identifier": "Plate1 N8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0412, 0.041, 0.0408, 0.0408, 0.0406, 0.0405, 0.0403, 0.0402, 0.0401, 0.04, 0.0398, 0.0398, 0.0398, 0.0397, 0.0396, 0.0395, 0.0395, 0.0397, 0.0392, 0.0393, 0.0391] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_510", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_216", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N9", + "sample identifier": "Plate1 N9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1046, 0.105, 0.106, 0.106, 0.1071, 0.1081, 0.1086, 0.1074, 0.1069, 0.1091, 0.1085, 0.1072, 0.1068, 0.1053, 0.1074, 0.1076, 0.1098, 0.1104, 0.1108, 0.1088, 0.109] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_766", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_217", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N10", + "sample identifier": "Plate1 N10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0412, 0.041, 0.0408, 0.0408, 0.0406, 0.0404, 0.0403, 0.0402, 0.0401, 0.0399, 0.0399, 0.0398, 0.0397, 0.0397, 0.0396, 0.0396, 0.0395, 0.0394, 0.0393, 0.0393, 0.0391] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1022", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_218", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N11", + "sample identifier": "Plate1 N11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0888, 0.0893, 0.0892, 0.0904, 0.0903, 0.0907, 0.0914, 0.0906, 0.0892, 0.0892, 0.0893, 0.0897, 0.0905, 0.0917, 0.0933, 0.0947, 0.095, 0.0944, 0.0933, 0.0924, 0.0918] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1278", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_219", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N12", + "sample identifier": "Plate1 N12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0408, 0.0405, 0.0403, 0.0402, 0.04, 0.0399, 0.0398, 0.0397, 0.0395, 0.0393, 0.0393, 0.0392, 0.0391, 0.039, 0.0388, 0.0389, 0.0389, 0.0387, 0.0386, 0.0384, 0.0384] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1534", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_220", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N13", + "sample identifier": "Plate1 N13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1659, 0.1658, 0.1654, 0.1663, 0.167, 0.1667, 0.1654, 0.163, 0.16, 0.1575, 0.1551, 0.1521, 0.1496, 0.1466, 0.1437, 0.1413, 0.1375, 0.1343, 0.1306, 0.1272, 0.1237] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1790", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_221", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N14", + "sample identifier": "Plate1 N14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0426, 0.0425, 0.0422, 0.0423, 0.0421, 0.0421, 0.0419, 0.0418, 0.0417, 0.0416, 0.0416, 0.0414, 0.0415, 0.0413, 0.0411, 0.0412, 0.0411, 0.0409, 0.0409, 0.0407, 0.0407] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2046", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_222", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "N15", + "sample identifier": "Plate1 N15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0416, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.042, 0.0418, 0.0415, 0.0416, 0.0414, 0.0414, 0.0413, 0.0412, 0.0409, 0.0409, 0.0409, 0.0408, 0.0406, 0.0406, 0.0405, 0.0405, 0.0406, 0.0403, 0.0402, 0.0403, 0.04] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2302", - "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_223", + "sample document": { + "location identifier": "N16", + "sample identifier": "Plate1 N16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0421, 0.042, 0.0416, 0.0416, 0.0414, 0.0414, 0.0412, 0.0411, 0.0409, 0.0409, 0.0408, 0.0407, 0.0407, 0.0406, 0.0405, 0.0405, 0.0404, 0.0403, 0.0401, 0.0401, 0.0399] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2558", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_224", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O1", + "sample identifier": "Plate1 O1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0909, 0.091, 0.0912, 0.0921, 0.0935, 0.0945, 0.0949, 0.0939, 0.0941, 0.095, 0.0962, 0.0963, 0.0963, 0.0965, 0.0968, 0.0977, 0.0968, 0.0968, 0.0973, 0.0981, 0.0979] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2814", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_225", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O2", + "sample identifier": "Plate1 O2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0909, 0.0916, 0.0923, 0.0944, 0.0951, 0.0954, 0.0952, 0.0952, 0.0943, 0.0932, 0.0935, 0.0949, 0.095, 0.0952, 0.0954, 0.0969, 0.0967, 0.0955, 0.0958, 0.0953, 0.0954] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3070", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_226", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O3", + "sample identifier": "Plate1 O3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0959, 0.096, 0.0976, 0.0998, 0.1014, 0.1025, 0.1022, 0.1017, 0.1024, 0.103, 0.1036, 0.104, 0.1032, 0.102, 0.1018, 0.1017, 0.1014, 0.1007, 0.1005, 0.1001, 0.0995] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3326", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_227", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O4", + "sample identifier": "Plate1 O4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0411, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1012, 0.1028, 0.1038, 0.1047, 0.105, 0.1065, 0.1062, 0.1055, 0.1045, 0.1036, 0.1019, 0.101, 0.0998, 0.101, 0.1021, 0.1025, 0.103, 0.1026, 0.1029, 0.1031, 0.1033] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3582", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_228", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O5", + "sample identifier": "Plate1 O5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1003, 0.1001, 0.1002, 0.1014, 0.1023, 0.1043, 0.1055, 0.1046, 0.1055, 0.1061, 0.106, 0.1064, 0.1071, 0.1077, 0.1082, 0.1081, 0.1078, 0.1075, 0.1076, 0.1075, 0.1072] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3838", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_229", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O6", + "sample identifier": "Plate1 O6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1034, 0.1056, 0.1068, 0.1073, 0.107, 0.1061, 0.1061, 0.1045, 0.1035, 0.1042, 0.1047, 0.1057, 0.1046, 0.1046, 0.1041, 0.1038, 0.1028, 0.1025, 0.1017, 0.1011, 0.1005] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4094", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_230", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O7", + "sample identifier": "Plate1 O7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0408, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0999, 0.101, 0.1025, 0.1045, 0.1064, 0.1096, 0.1103, 0.1083, 0.1071, 0.1063, 0.1056, 0.1054, 0.1051, 0.1044, 0.1035, 0.1026, 0.1013, 0.1011, 0.1008, 0.1003, 0.0993] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4350", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_231", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O8", + "sample identifier": "Plate1 O8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1096, 0.1103, 0.1102, 0.111, 0.1118, 0.1124, 0.1127, 0.114, 0.1144, 0.1134, 0.1119, 0.1125, 0.1119, 0.1124, 0.1112, 0.11, 0.1091, 0.1085, 0.107, 0.1084, 0.1079] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4606", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_232", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O9", + "sample identifier": "Plate1 O9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0404, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1053, 0.1063, 0.106, 0.1052, 0.1062, 0.1064, 0.1048, 0.1036, 0.1025, 0.1036, 0.1037, 0.1042, 0.1042, 0.1028, 0.1037, 0.1025, 0.1021, 0.101, 0.1009, 0.0987, 0.0989] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4862", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_233", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O10", + "sample identifier": "Plate1 O10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0403, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0961, 0.0971, 0.0982, 0.1002, 0.1031, 0.1031, 0.102, 0.1009, 0.1012, 0.1015, 0.1012, 0.1003, 0.1004, 0.1001, 0.0992, 0.098, 0.0965, 0.0962, 0.0958, 0.0954, 0.0952] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5118", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_234", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O11", + "sample identifier": "Plate1 O11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1046, 0.103, 0.1019, 0.1019, 0.1025, 0.1026, 0.1017, 0.1012, 0.1018, 0.1015, 0.1018, 0.1049, 0.1071, 0.108, 0.1086, 0.1091, 0.109, 0.1076, 0.1077, 0.1068, 0.1067] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5374", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_235", "sample document": { - "sample identifier": "Plate1 P15", - "location identifier": "P15", + "location identifier": "O12", + "sample identifier": "Plate1 O12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0402, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1, 0.1011, 0.1004, 0.1011, 0.1007, 0.0986, 0.0954, 0.0971, 0.0995, 0.1005, 0.1006, 0.1015, 0.1023, 0.103, 0.1043, 0.1044, 0.1041, 0.1041, 0.1041, 0.1047, 0.1043] + ] + } } } ], @@ -154527,7 +15337,7 @@ }, "custom information document": { "maximum wavelength signal": { - "value": 525.0, + "value": 563.0, "unit": "nm" } } @@ -154540,587 +15350,1281 @@ "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 525.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_255", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_236", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "O13", + "sample identifier": "Plate1 O13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1183, 0.1192, 0.1198, 0.1206, 0.1203, 0.1193, 0.1177, 0.1161, 0.1143, 0.1133, 0.1131, 0.1129, 0.1132, 0.1173, 0.1176, 0.1184, 0.1174, 0.1167, 0.1158, 0.1155, 0.1147] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 527.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_511", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_237", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "O14", + "sample identifier": "Plate1 O14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1184, 0.1195, 0.1187, 0.1189, 0.1185, 0.1182, 0.118, 0.1176, 0.1177, 0.1173, 0.1167, 0.1169, 0.1167, 0.1167, 0.1161, 0.1159, 0.1144, 0.1137, 0.1131, 0.1115, 0.1097] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 529.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_767", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_238", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "O15", + "sample identifier": "Plate1 O15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0475, 0.0472, 0.0474, 0.0473, 0.0475, 0.0472, 0.047, 0.0469, 0.047, 0.0466, 0.0466, 0.0466, 0.0465, 0.0465, 0.0463, 0.046, 0.0455, 0.0457, 0.0455, 0.0452, 0.0452] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 531.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1023", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_239", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "O16", + "sample identifier": "Plate1 O16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0427, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0423, 0.0423, 0.0423, 0.0424, 0.0424, 0.0422, 0.0421, 0.042, 0.042, 0.0416, 0.0416, 0.0416, 0.0416, 0.0414, 0.0413, 0.0411, 0.0409, 0.0408, 0.0407, 0.0406, 0.0405] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 533.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1279", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_240", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P1", + "sample identifier": "Plate1 P1", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0426, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0917, 0.0926, 0.0936, 0.0942, 0.094, 0.0942, 0.0939, 0.0936, 0.0943, 0.0957, 0.0958, 0.0958, 0.0961, 0.0968, 0.0974, 0.0984, 0.0969, 0.0952, 0.0947, 0.0944, 0.0947] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 535.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1535", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_241", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P2", + "sample identifier": "Plate1 P2", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0425, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0433, 0.0431, 0.0432, 0.0434, 0.0433, 0.0433, 0.0431, 0.0431, 0.043, 0.0427, 0.0428, 0.0426, 0.0426, 0.0426, 0.0425, 0.0422, 0.0422, 0.042, 0.042, 0.0419, 0.0416] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 537.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1791", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_242", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P3", + "sample identifier": "Plate1 P3", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0424, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1024, 0.1016, 0.1026, 0.1041, 0.106, 0.1072, 0.1057, 0.1042, 0.105, 0.1051, 0.1055, 0.106, 0.106, 0.107, 0.1073, 0.1072, 0.1064, 0.1057, 0.1054, 0.1058, 0.1062] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 539.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2047", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_243", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P4", + "sample identifier": "Plate1 P4", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, "compartment temperature": { "value": 26.2, "unit": "degC" - } - }, - { - "device control aggregate document": { - "device control document": [ - { - "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 541.0, + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", "unit": "nm" } - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2303", - "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", - "well plate identifier": "Plate1" - }, - "absorbance": { - "value": 0.0423, - "unit": "mAU" - }, - "compartment temperature": { - "value": 26.3, - "unit": "degC" + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0436, 0.0435, 0.0434, 0.0437, 0.0437, 0.0435, 0.0434, 0.0434, 0.0432, 0.043, 0.043, 0.0429, 0.0429, 0.0428, 0.0424, 0.0426, 0.0422, 0.0422, 0.0421, 0.042, 0.0418] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 543.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2559", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_244", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P5", + "sample identifier": "Plate1 P5", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0946, 0.0966, 0.0986, 0.1, 0.1016, 0.1023, 0.1026, 0.1043, 0.1061, 0.1042, 0.1045, 0.1058, 0.106, 0.1056, 0.1055, 0.1062, 0.1064, 0.1059, 0.1055, 0.1048, 0.1046] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 545.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2815", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_245", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P6", + "sample identifier": "Plate1 P6", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.042, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0419, 0.0418, 0.0418, 0.042, 0.042, 0.0418, 0.0417, 0.0417, 0.0417, 0.0413, 0.0414, 0.0414, 0.0413, 0.0413, 0.0412, 0.0409, 0.0409, 0.0407, 0.0407, 0.0406, 0.0404] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 547.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3071", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_246", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P7", + "sample identifier": "Plate1 P7", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0418, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1031, 0.1045, 0.1059, 0.1072, 0.109, 0.1103, 0.1103, 0.1104, 0.1103, 0.1095, 0.1093, 0.1082, 0.1062, 0.1054, 0.1046, 0.1035, 0.1034, 0.1034, 0.1038, 0.1032, 0.1025] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 549.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3327", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_247", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P8", + "sample identifier": "Plate1 P8", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0419, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0425, 0.0424, 0.0424, 0.0426, 0.0424, 0.0423, 0.0422, 0.0422, 0.0421, 0.0418, 0.0419, 0.0417, 0.0417, 0.0417, 0.0414, 0.0414, 0.0412, 0.041, 0.041, 0.041, 0.0407] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 551.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3583", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_248", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P9", + "sample identifier": "Plate1 P9", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1093, 0.1082, 0.1061, 0.1051, 0.1066, 0.1056, 0.1044, 0.1053, 0.1057, 0.1082, 0.1078, 0.1071, 0.1059, 0.1043, 0.105, 0.1035, 0.1041, 0.1039, 0.1048, 0.104, 0.1045] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 553.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3839", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_249", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P10", + "sample identifier": "Plate1 P10", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0417, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0437, 0.0435, 0.0436, 0.0437, 0.0437, 0.0435, 0.0434, 0.0435, 0.0433, 0.0432, 0.0431, 0.0431, 0.0432, 0.0429, 0.0428, 0.0427, 0.0424, 0.0423, 0.0422, 0.0423, 0.0421] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 555.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4095", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_250", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P11", + "sample identifier": "Plate1 P11", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0415, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1045, 0.1038, 0.1036, 0.1032, 0.1032, 0.1033, 0.1023, 0.1032, 0.1046, 0.1038, 0.1019, 0.1012, 0.1022, 0.1055, 0.1073, 0.108, 0.1075, 0.1086, 0.1092, 0.109, 0.1094] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 557.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4351", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_251", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P12", + "sample identifier": "Plate1 P12", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0413, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0435, 0.0434, 0.0434, 0.0436, 0.0435, 0.0434, 0.0434, 0.0432, 0.0431, 0.0429, 0.0429, 0.0428, 0.0428, 0.0427, 0.0425, 0.0424, 0.0421, 0.0421, 0.0421, 0.0419, 0.0419] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 559.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4607", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_252", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P13", + "sample identifier": "Plate1 P13", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.3, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.1221, 0.1227, 0.1233, 0.124, 0.1229, 0.1223, 0.1226, 0.1227, 0.1226, 0.1222, 0.1217, 0.1219, 0.1218, 0.1217, 0.1217, 0.1219, 0.1207, 0.1199, 0.1193, 0.1183, 0.1168] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 561.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4863", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_253", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P14", + "sample identifier": "Plate1 P14", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0456, 0.0454, 0.0454, 0.0455, 0.0455, 0.0452, 0.0452, 0.045, 0.0449, 0.0446, 0.0445, 0.0444, 0.0443, 0.0443, 0.0441, 0.044, 0.0436, 0.0437, 0.0434, 0.0433, 0.0432] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 563.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5119", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_254", "sample document": { - "sample identifier": "Plate1 P16", - "location identifier": "P16", + "location identifier": "P15", + "sample identifier": "Plate1 P15", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.0412, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.042, 0.0418, 0.0417, 0.042, 0.0419, 0.0418, 0.0417, 0.0416, 0.0415, 0.0412, 0.0412, 0.0411, 0.0411, 0.041, 0.0408, 0.0408, 0.0404, 0.0404, 0.0403, 0.0402, 0.0402] + ] + } } - }, + } + ], + "measurement time": "2021-06-11T13:11:11+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ { "device control aggregate document": { "device control document": [ { "device type": "plate reader", - "detection type": "Absorbance", - "detector wavelength setting": { - "value": 565.0, - "unit": "nm" - } + "detection type": "Absorbance" } ] }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5375", + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_255", "sample document": { - "sample identifier": "Plate1 P16", "location identifier": "P16", + "sample identifier": "Plate1 P16", "well plate identifier": "Plate1" }, - "absorbance": { - "value": 0.041, - "unit": "mAU" - }, "compartment temperature": { - "value": 26.4, + "value": 26.2, "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [525.0, 527.0, 529.0, 531.0, 533.0, 535.0, 537.0, 539.0, 541.0, 543.0, 545.0, 547.0, 549.0, 551.0, 553.0, 555.0, 557.0, 559.0, 561.0, 563.0, 565.0] + ], + "measures": [ + [0.0426, 0.0426, 0.0426, 0.0427, 0.0426, 0.0425, 0.0424, 0.0423, 0.0423, 0.042, 0.042, 0.0418, 0.0419, 0.0417, 0.0417, 0.0415, 0.0413, 0.0412, 0.0412, 0.0412, 0.041] + ] + } } } ], @@ -155142,10 +16646,10 @@ "data system document": { "ASM file identifier": "N/A", "data system instance identifier": "N/A", - "file name": "partial_plate.txt", "UNC path": "tests/parsers/moldev_softmax_pro/testdata/partial_plate.txt", + "file name": "partial_plate.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.92", + "ASM converter version": "0.1.93", "software name": "SoftMax Pro" }, "device system document": { From 30aa4d24115a9aba1f35b81f4035f335f289ae04 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Thu, 12 Jun 2025 13:36:27 -0500 Subject: [PATCH 04/13] refactor solution --- .../softmax_pro_structure.py | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index 5af26bc20..279e6cc39 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -672,6 +672,12 @@ def iter_data_elements(self, position: str) -> Iterator[DataElement]: for plate_wavelength_data in self.raw_data.wavelength_data: yield plate_wavelength_data.data_elements[position] + def position_exists(self, position: str) -> bool: + for plate_wavelength_data in self.raw_data.wavelength_data: + if position in plate_wavelength_data.data_elements: + return True + return False + @dataclass(frozen=True) class TimeMeasurementData: @@ -807,6 +813,15 @@ def iter_data_elements(self, position: str) -> Iterator[DataElement]: for measurement_data in time_wavelength_data.measurement_data: yield measurement_data.data_elements[position] + def position_exists(self, position: str) -> bool: + for time_wavelength_data in self.raw_data.wavelength_data: + if any( + position in measurement.data_elements + for measurement in time_wavelength_data.measurement_data + ): + return True + return False + @dataclass(frozen=True) class PlateBlock(ABC, Block): @@ -915,27 +930,12 @@ def get_wavelengths_from_start_end_step( start_f + step_f * i for i in range(int((end_f - start_f) / step_f) + 1) ] - def _position_exists(self, position: str) -> bool: - """Check if a well position exists in the actual data (for partial plates).""" - if isinstance(self.block_data, PlateData): - for plate_wavelength_data in self.block_data.raw_data.wavelength_data: - if position in plate_wavelength_data.data_elements: - return True - elif isinstance(self.block_data, TimeData): - for time_wavelength_data in self.block_data.raw_data.wavelength_data: - if any( - position in measurement.data_elements - for measurement in time_wavelength_data.measurement_data - ): - return True - return False - def iter_wells(self) -> Iterator[str]: cols, rows = NUM_WELLS_TO_PLATE_DIMENSIONS[self.header.num_wells] for row in range(rows): for col in range(1, cols + 1): position = f"{num_to_chars(row)}{col}" - if self._position_exists(position): + if self.block_data.position_exists(position): yield position def iter_data_elements(self, position: str | list[str]) -> Iterator[DataElement]: From a471b7349f95cd3f01d09660d83a2d6563f6ab69 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Thu, 12 Jun 2025 19:42:14 -0500 Subject: [PATCH 05/13] truncate data when data is smaller --- .../moldev_softmax_pro/softmax_pro_structure.py | 13 +++++++------ ...absorbance_endpoint_partial_plate_example02.json | 2 +- ...absorbance_endpoint_partial_plate_example05.json | 2 +- ...uorescence_endpoint_partial_plate_example02.json | 2 +- ...minescence_endpoint_partial_plate_example02.json | 2 +- .../moldev_softmax_pro/testdata/spectrum_data.json | 2 +- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index 279e6cc39..9d36d8faa 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -410,14 +410,12 @@ def create( for row_idx, *row_data in df_data.itertuples() for col, raw_value in zip(df_data.columns, row_data, strict=True) } - data_elements = {} for position, raw_value in data.items(): value = try_non_nan_float_or_none(raw_value) if value is None and elapsed_time is not None: msg = f"Missing kinetic measurement for well position {position} at {elapsed_time}s." raise AllotropeConversionError(msg) - data_elements[str(position)] = DataElement( uuid=random_uuid_str(), plate=header.name, @@ -477,9 +475,12 @@ def get_measurement_section( ) # Truncate columns Series to match the actual number of data columns - truncated_columns = columns.iloc[: data.shape[1]] + if len(columns) >= data.shape[1]: + columns = columns.iloc[: data.shape[1]] + elif len(columns) < data.shape[1]: + data = data.loc[:, :len(columns) - 1] - set_columns(data, truncated_columns) + set_columns(data, columns) return data @@ -598,8 +599,8 @@ def create(reader: CsvReader, header: PlateHeader) -> SpectrumRawPlateData: reader, columns, rows ).iloc[:, 2:] signal_data = { - f"{num_to_chars(row_idx)}{col}": try_float( - str(raw_value), "wavelength signal" + f"{num_to_chars(row_idx)}{col}": try_float_or_none( + str(raw_value) ) for row_idx, *row_data in max_wavelength_signal_data.itertuples() for col, raw_value in zip( diff --git a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example02.json b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example02.json index 297b38d50..96612af1a 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example02.json +++ b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example02.json @@ -20337,7 +20337,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example02.txt", "file name": "MD_SMP_absorbance_endpoint_partial_plate_example02.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.92", + "ASM converter version": "0.1.93", "software name": "SoftMax Pro" }, "device system document": { diff --git a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example05.json b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example05.json index e71329f92..5ea3cedc4 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example05.json +++ b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example05.json @@ -15965,7 +15965,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/MD_SMP_absorbance_endpoint_partial_plate_example05.txt", "file name": "MD_SMP_absorbance_endpoint_partial_plate_example05.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.92", + "ASM converter version": "0.1.93", "software name": "SoftMax Pro" }, "device system document": { diff --git a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_fluorescence_endpoint_partial_plate_example02.json b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_fluorescence_endpoint_partial_plate_example02.json index a74e33079..130c8755f 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_fluorescence_endpoint_partial_plate_example02.json +++ b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_fluorescence_endpoint_partial_plate_example02.json @@ -18557,7 +18557,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/MD_SMP_fluorescence_endpoint_partial_plate_example02.txt", "file name": "MD_SMP_fluorescence_endpoint_partial_plate_example02.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.92", + "ASM converter version": "0.1.93", "software name": "SoftMax Pro" }, "device system document": { diff --git a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_luminescence_endpoint_partial_plate_example02.json b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_luminescence_endpoint_partial_plate_example02.json index 72a752867..6751babd4 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_luminescence_endpoint_partial_plate_example02.json +++ b/tests/parsers/moldev_softmax_pro/testdata/MD_SMP_luminescence_endpoint_partial_plate_example02.json @@ -17117,7 +17117,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/MD_SMP_luminescence_endpoint_partial_plate_example02.txt", "file name": "MD_SMP_luminescence_endpoint_partial_plate_example02.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.92", + "ASM converter version": "0.1.93", "software name": "SoftMax Pro" }, "device system document": { diff --git a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json index 68442fee8..249f8d979 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json +++ b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json @@ -48973,7 +48973,7 @@ "UNC path": "tests/parsers/moldev_softmax_pro/testdata/spectrum_data.txt", "file name": "spectrum_data.txt", "ASM converter name": "allotropy_molecular_devices_softmax_pro", - "ASM converter version": "0.1.92", + "ASM converter version": "0.1.93", "software name": "SoftMax Pro" }, "device system document": { From 8f11c4a713563eb8a47bef4e8cde04b43d1e046d Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Thu, 12 Jun 2025 19:45:15 -0500 Subject: [PATCH 06/13] lint --- .../parsers/moldev_softmax_pro/softmax_pro_structure.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index 9d36d8faa..6b08ebbc7 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -478,7 +478,7 @@ def get_measurement_section( if len(columns) >= data.shape[1]: columns = columns.iloc[: data.shape[1]] elif len(columns) < data.shape[1]: - data = data.loc[:, :len(columns) - 1] + data = data.loc[:, : len(columns) - 1] set_columns(data, columns) return data @@ -599,9 +599,7 @@ def create(reader: CsvReader, header: PlateHeader) -> SpectrumRawPlateData: reader, columns, rows ).iloc[:, 2:] signal_data = { - f"{num_to_chars(row_idx)}{col}": try_float_or_none( - str(raw_value) - ) + f"{num_to_chars(row_idx)}{col}": try_float_or_none(str(raw_value)) for row_idx, *row_data in max_wavelength_signal_data.itertuples() for col, raw_value in zip( max_wavelength_signal_data.columns, row_data, strict=True From 4de5813d9a40a4d43a56418577227e7916ce9b93 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Fri, 13 Jun 2025 17:46:07 -0500 Subject: [PATCH 07/13] lint --- .../parsers/moldev_softmax_pro/softmax_pro_structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index 6b08ebbc7..93f303ab1 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -564,7 +564,7 @@ def _update_kinetic_data( @dataclass(frozen=True) class SpectrumRawPlateData(RawData): - maximum_wavelength_signal: dict[str, float] + maximum_wavelength_signal: dict[str, float | None] @staticmethod def create(reader: CsvReader, header: PlateHeader) -> SpectrumRawPlateData: From f1b242d495eac59ca6157570143d9fa34bd6bf33 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Mon, 16 Jun 2025 10:42:30 -0500 Subject: [PATCH 08/13] ignore wells with empty strings --- .../softmax_pro_data_creator.py | 20 +- .../partial_plate_with_empty_values.json | 21492 ++++++++++++++++ .../partial_plate_with_empty_values.txt | Bin 0 -> 231240 bytes 3 files changed, 21506 insertions(+), 6 deletions(-) create mode 100644 tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json create mode 100644 tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py index 58bb2a351..260c7ea20 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py @@ -18,7 +18,7 @@ ) from allotropy.allotrope.schema_mappers.data_cube import DataCube, DataCubeComponent from allotropy.exceptions import AllotropeConversionError -from allotropy.parsers.constants import DEFAULT_EPOCH_TIMESTAMP, NOT_APPLICABLE +from allotropy.parsers.constants import DEFAULT_EPOCH_TIMESTAMP, NOT_APPLICABLE, NEGATIVE_ZERO from allotropy.parsers.moldev_softmax_pro.constants import DEVICE_TYPE from allotropy.parsers.moldev_softmax_pro.softmax_pro_structure import ( DataElement, @@ -80,9 +80,12 @@ def _get_data_cube( def _get_spectrum_data_cube( plate_block: PlateBlock, data_elements: list[DataElement] -) -> DataCube: +) -> DataCube | None: wavelengths = [data_element.wavelength for data_element in data_elements] values = [data_element.value for data_element in data_elements] + if NEGATIVE_ZERO in values: + # Ignore the wells completely from the ASM if there is an nan value + return None return DataCube( label=f"{plate_block.header.concept}-spectrum", @@ -105,14 +108,16 @@ def _get_spectrum_data_cube( def _create_spectrum_measurement( plate_block: PlateBlock, data_elements: list[DataElement] -) -> Measurement: +) -> Measurement | None: measurement_type = plate_block.measurement_type first_data_element = data_elements[0] - + spectrum_data_cube = _get_spectrum_data_cube(plate_block, data_elements) + if not spectrum_data_cube: + return None return Measurement( type_=measurement_type, identifier=first_data_element.uuid, - spectrum_data_cube=_get_spectrum_data_cube(plate_block, data_elements), + spectrum_data_cube=spectrum_data_cube, compartment_temperature=first_data_element.temperature or None, location_identifier=first_data_element.position, well_plate_identifier=plate_block.header.name, @@ -154,7 +159,10 @@ def _create_measurements(plate_block: PlateBlock, position: str) -> list[Measure MeasurementType.EMISSION_LUMINESCENCE_CUBE_SPECTRUM, MeasurementType.EXCITATION_LUMINESCENCE_CUBE_SPECTRUM, ): - return [_create_spectrum_measurement(plate_block, data_elements)] + measurement = _create_spectrum_measurement(plate_block, data_elements) + if not measurement: + return None + return [measurement] return [ Measurement( diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json new file mode 100644 index 000000000..cbe34fa16 --- /dev/null +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json @@ -0,0 +1,21492 @@ +{ + "$asm.manifest": "http://purl.allotrope.org/manifests/plate-reader/REC/2025/03/plate-reader.manifest", + "plate reader aggregate document": { + "plate reader document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_0", + "sample document": { + "location identifier": "A1", + "sample identifier": "plate A1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.672, 0.563, 0.502, 2.091, 0.673, 1.05, 2.897, 2.051, 0.694, 3.045, 0.938, 1.029, 2.022, 1.28, 1.523, 1.04, 2.069, 0.141, 3.256, 2.308, 1.589, 0.608, 0.36, 2.82, 3.264, 2.159, 0.176, 2.844, 0.591, 3.624, 2.77, 2.065, 0.745, 0.166, 1.232, 2.332, 3.284, 0.015, 2.142, 3.22, 2.993, 1.538, 0.596, 0.105, 0.204, 3.126, 2.505, 0.46, 0.999, 3.089, 1.158] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_1", + "sample document": { + "location identifier": "A2", + "sample identifier": "plate A2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.592, 0.574, 0.177, 2.418, 2.063, 0.203, 1.681, 2.826, 2.513, 0.873, 0.053, 1.46, 1.069, 0.274, 2.872, 0.283, 1.856, 0.048, 3.191, 1.756, 2.053, 1.998, 0.035, 3.315, 0.051, 0.012, 0.255, 2.616, 0.138, 3.654, 3.715, 1.844, 1.501, 2.466, 0.177, 1.491, 0.567, 1.747, 3.169, 2.129, 1.602, 1.189, 3.629, 2.346, 2.94, 0.077, 3.526, 3.83, 1.331, 2.842, 0.649] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_2", + "sample document": { + "location identifier": "A3", + "sample identifier": "plate A3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.412, 1.808, 1.332, 3.104, 0.594, 0.538, 0.862, 2.366, 2.051, 3.948, 3.064, 2.688, 2.859, 1.157, 2.208, 3.959, 2.603, 0.096, 1.381, 3.716, 0.108, 0.878, 1.061, 0.153, 0.864, 2.369, 1.688, 0.374, 3.973, 0.485, 0.424, 1.285, 1.295, 3.004, 3.303, 0.036, 0.168, 3.361, 3.583, 0.952, 3.704, 3.381, 1.117, 2.181, 2.537, 2.501, 0.769, 1.189, 0.732, 0.118, 0.923] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_3", + "sample document": { + "location identifier": "A4", + "sample identifier": "plate A4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.733, 3.949, 3.126, 0.54, 3.533, 0.746, 1.179, 2.239, 2.224, 2.849, 0.487, 2.392, 1.565, 3.523, 1.779, 1.392, 3.855, 1.854, 2.172, 3.79, 3.241, 0.513, 0.429, 0.011, 0.727, 3.761, 2.88, 1.616, 2.363, 1.6, 0.499, 3.642, 3.855, 3.562, 0.69, 1.335, 2.168, 2.463, 3.769, 3.289, 2.989, 1.122, 1.358, 2.102, 3.217, 0.988, 3.552, 2.657, 0.758, 1.108, 0.914] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_4", + "sample document": { + "location identifier": "A5", + "sample identifier": "plate A5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.334, 2.56, 0.327, 1.682, 3.22, 3.52, 3.115, 3.813, 3.772, 1.866, 3.563, 3.876, 0.624, 2.35, 0.844, 2.537, 2.003, 2.833, 0.444, 3.224, 1.391, 2.084, 2.882, 0.801, 2.119, 3.154, 2.326, 0.794, 3.738, 0.209, 0.222, 0.857, 1.254, 0.686, 1.165, 1.082, 3.528, 1.88, 1.469, 1.815, 3.053, 2.65, 3.997, 1.422, 3.426, 1.245, 0.734, 3.752, 2.372, 2.451, 1.548] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_5", + "sample document": { + "location identifier": "A6", + "sample identifier": "plate A6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.824, 0.314, 1.884, 3.522, 1.249, 3.677, 3.525, 3.562, 0.066, 1.193, 2.32, 0.074, 3.563, 1.643, 2.705, 2.622, 3.938, 1.184, 3.762, 3.008, 0.123, 1.363, 2.628, 0.17, 2.741, 2.087, 1.459, 1.375, 0.874, 2.42, 2.574, 2.421, 1.287, 2.66, 0.398, 0.543, 3.37, 1.163, 3.915, 1.405, 0.002, 2.317, 1.403, 0.621, 0.732, 2.575, 0.434, 3.779, 0.72, 2.623, 0.795] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_6", + "sample document": { + "location identifier": "A7", + "sample identifier": "plate A7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.567, 2.609, 3.442, 1.424, 2.461, 1.685, 1.714, 0.781, 3.162, 2.217, 2.15, 2.688, 1.645, 2.618, 3.898, 2.786, 0.902, 1.245, 2.161, 3.251, 2.775, 1.269, 2.357, 3.006, 1.806, 3.959, 2.007, 3.437, 0.165, 1.653, 1.68, 0.654, 2.25, 1.625, 0.007, 3.812, 1.845, 1.235, 1.936, 2.858, 1.656, 0.382, 0.753, 3.187, 1.852, 3.628, 3.758, 2.003, 0.833, 3.788, 3.531] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_7", + "sample document": { + "location identifier": "A8", + "sample identifier": "plate A8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.533, 2.559, 3.371, 2.02, 1.298, 0.252, 0.436, 3.618, 2.502, 3.677, 2.276, 0.615, 1.508, 0.536, 1.495, 0.437, 0.02, 2.611, 0.086, 0.941, 3.666, 3.308, 3.303, 1.595, 2.393, 0.515, 3.169, 1.153, 2.177, 0.2, 0.004, 2.604, 0.376, 2.121, 3.146, 2.095, 2.879, 3.604, 2.708, 3.559, 1.408, 1.617, 3.434, 3.18, 3.379, 3.766, 3.244, 2.65, 0.356, 3.19, 3.738] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_8", + "sample document": { + "location identifier": "A9", + "sample identifier": "plate A9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.391, 0.746, 2.847, 3.865, 3.225, 3.256, 1.775, 3.627, 0.782, 1.083, 3.282, 1.441, 2.301, 3.673, 3.672, 0.239, 3.387, 1.39, 3.4, 1.558, 0.415, 3.902, 0.527, 3.532, 2.049, 3.873, 0.122, 2.216, 2.626, 1.27, 0.518, 0.796, 2.986, 0.462, 0.612, 1.857, 1.529, 2.256, 3.921, 2.839, 1.104, 3.977, 1.925, 2.475, 2.126, 0.175, 1.133, 3.506, 3.707, 3.526, 3.857] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 569.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_9", + "sample document": { + "location identifier": "A10", + "sample identifier": "plate A10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.26, 0.956, 1.632, 3.322, 3.488, 0.219, 3.314, 1.815, 3.351, 3.133, 3.559, 1.0, 3.512, 0.564, 2.485, 2.455, 1.838, 3.061, 1.815, 2.71, 1.13, 1.468, 0.561, 0.454, 0.437, 1.976, 2.051, 1.406, 1.873, 2.74, 0.615, 2.508, 3.1, 1.412, 3.257, 3.84, 1.353, 1.139, 1.123, 1.637, 2.214, 0.44, 0.569, 3.705, 1.544, 2.977, 2.413, 1.91, 3.64, 1.72, 3.294] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_10", + "sample document": { + "location identifier": "A11", + "sample identifier": "plate A11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.445, 1.892, 0.816, 2.726, 3.792, 0.395, 1.178, 2.885, 1.512, 2.167, 1.908, 3.941, 0.611, 2.517, 1.05, 1.9, 2.099, 1.307, 2.645, 1.101, 0.699, 1.937, 0.177, 0.495, 0.69, 0.898, 0.855, 2.909, 1.46, 3.563, 0.14, 1.765, 0.153, 3.445, 0.169, 0.616, 2.283, 2.686, 3.465, 3.444, 0.175, 2.254, 3.611, 3.47, 0.306, 0.498, 3.958, 1.187, 0.494, 1.077, 0.314] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_11", + "sample document": { + "location identifier": "A12", + "sample identifier": "plate A12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.603, 0.995, 0.619, 2.595, 2.508, 1.714, 0.32, 2.036, 2.893, 3.539, 2.269, 1.425, 1.948, 2.026, 0.142, 3.788, 1.166, 2.348, 0.433, 3.616, 3.413, 1.841, 3.2, 0.925, 2.445, 2.325, 0.706, 0.189, 0.191, 0.94, 3.668, 2.414, 0.382, 3.249, 3.537, 0.769, 3.534, 0.849, 1.661, 2.901, 1.962, 0.649, 0.571, 3.904, 1.905, 0.828, 1.662, 1.444, 0.163, 0.71, 2.791] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_12", + "sample document": { + "location identifier": "A13", + "sample identifier": "plate A13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.839, 0.06, 1.46, 0.9, 2.762, 1.794, 3.693, 0.15, 0.182, 1.008, 0.131, 1.844, 1.953, 3.871, 3.854, 1.042, 2.699, 2.489, 3.373, 0.254, 0.316, 0.686, 1.532, 1.653, 2.763, 1.27, 3.295, 3.02, 1.616, 0.663, 3.262, 0.025, 3.481, 2.148, 0.828, 2.354, 2.921, 2.348, 0.775, 2.974, 3.84, 0.699, 1.478, 1.893, 1.831, 2.804, 2.617, 0.032, 2.051, 3.786, 2.962] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_13", + "sample document": { + "location identifier": "A14", + "sample identifier": "plate A14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.954, 0.79, 0.456, 2.475, 2.153, 2.528, 3.807, 2.137, 1.492, 2.498, 0.673, 2.534, 3.519, 1.745, 0.105, 2.363, 3.805, 3.043, 1.5, 2.121, 0.351, 1.713, 0.398, 0.413, 3.617, 3.207, 3.638, 3.822, 3.958, 2.652, 3.263, 0.968, 1.83, 1.7, 0.307, 3.235, 3.024, 3.672, 2.675, 3.825, 3.114, 0.211, 3.283, 0.476, 3.167, 2.165, 1.959, 0.147, 1.725, 0.441, 2.812] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_14", + "sample document": { + "location identifier": "A15", + "sample identifier": "plate A15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.989, 0.55, 1.665, 2.611, 1.241, 0.391, 0.042, 2.858, 2.945, 2.889, 3.985, 2.178, 2.839, 3.235, 3.704, 0.703, 1.818, 1.438, 0.87, 3.338, 0.132, 0.367, 1.675, 3.006, 0.14, 2.43, 3.922, 1.245, 1.452, 1.247, 3.491, 2.096, 3.517, 3.84, 2.273, 0.418, 0.165, 3.089, 3.066, 2.843, 2.981, 0.814, 3.729, 0.935, 3.129, 2.032, 0.443, 1.24, 3.463, 1.461, 0.14] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_15", + "sample document": { + "location identifier": "A16", + "sample identifier": "plate A16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.708, 0.855, 1.102, 2.679, 0.621, 2.875, 2.658, 2.47, 2.81, 0.469, 2.797, 1.405, 1.697, 3.398, 1.888, 2.661, 2.999, 0.962, 3.285, 0.538, 2.729, 2.372, 2.026, 0.356, 3.318, 0.638, 0.739, 3.877, 2.108, 1.987, 2.681, 1.782, 3.99, 1.107, 0.782, 1.241, 2.414, 1.161, 1.651, 1.542, 1.507, 0.618, 0.256, 2.373, 0.184, 3.408, 2.032, 1.537, 1.24, 3.371, 1.443] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_16", + "sample document": { + "location identifier": "A17", + "sample identifier": "plate A17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.278, 0.177, 0.922, 1.411, 0.336, 2.828, 0.745, 3.36, 3.983, 2.136, 2.78, 0.362, 0.822, 1.788, 1.014, 1.414, 0.59, 2.616, 0.646, 0.246, 1.838, 3.31, 1.743, 3.031, 2.11, 2.115, 3.652, 0.172, 3.909, 2.605, 3.202, 2.637, 2.737, 0.543, 2.403, 1.604, 3.068, 3.695, 0.445, 2.413, 1.669, 1.8, 1.668, 3.406, 2.726, 0.256, 3.433, 0.585, 3.169, 1.993, 1.441] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_17", + "sample document": { + "location identifier": "A18", + "sample identifier": "plate A18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.921, 0.594, 3.124, 3.605, 0.967, 2.434, 1.89, 3.3, 2.22, 3.175, 0.573, 3.451, 1.377, 2.933, 0.143, 1.625, 0.279, 3.384, 3.41, 2.346, 0.894, 2.17, 2.233, 2.577, 0.038, 1.642, 2.336, 0.305, 1.854, 2.682, 3.067, 1.002, 1.915, 1.164, 0.281, 2.042, 3.612, 0.938, 1.436, 3.17, 1.177, 0.395, 2.224, 3.237, 1.095, 2.348, 0.29, 0.472, 2.583, 2.63, 3.154] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_18", + "sample document": { + "location identifier": "A19", + "sample identifier": "plate A19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.201, 3.759, 3.647, 0.546, 0.75, 2.36, 0.547, 3.566, 3.325, 0.097, 1.585, 1.445, 3.538, 0.108, 3.571, 1.535, 0.213, 2.652, 2.1, 2.012, 3.34, 1.948, 0.239, 1.168, 0.499, 3.945, 2.995, 1.482, 1.689, 1.351, 1.863, 1.721, 3.224, 3.528, 1.865, 1.242, 2.267, 0.617, 3.53, 3.682, 3.065, 1.372, 2.11, 3.072, 3.591, 2.949, 2.686, 3.128, 1.523, 0.812, 0.077] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_20", + "sample document": { + "location identifier": "A21", + "sample identifier": "plate A21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.885, 3.195, 1.544, 0.482, 2.698, 2.064, 1.67, 1.845, 3.415, 2.351, 0.901, 2.497, 3.546, 3.497, 3.106, 1.0, 0.699, 2.19, 2.624, 3.615, 0.294, 3.63, 0.605, 3.478, 3.024, 0.397, 2.101, 2.947, 2.473, 3.7, 0.329, 1.848, 0.821, 2.581, 2.981, 0.763, 3.332, 0.791, 1.345, 3.175, 0.936, 1.869, 3.197, 3.371, 2.887, 2.073, 3.178, 0.819, 0.893, 2.494, 3.436] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_21", + "sample document": { + "location identifier": "A22", + "sample identifier": "plate A22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.646, 1.103, 1.112, 2.382, 1.255, 2.589, 2.065, 1.457, 2.3, 3.962, 2.722, 3.372, 3.714, 2.022, 3.053, 1.676, 0.965, 0.515, 2.343, 1.668, 3.908, 0.845, 3.449, 2.679, 2.425, 0.432, 1.234, 0.591, 0.951, 1.218, 1.281, 2.053, 3.978, 0.264, 1.682, 0.744, 3.708, 0.198, 1.726, 2.174, 1.266, 3.333, 3.044, 3.212, 2.213, 2.497, 3.483, 1.349, 3.834, 0.397, 2.213] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_22", + "sample document": { + "location identifier": "A23", + "sample identifier": "plate A23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.304, 2.55, 0.826, 3.528, 1.801, 1.654, 2.433, 3.957, 0.822, 1.354, 1.474, 0.506, 1.082, 2.681, 0.669, 3.393, 3.45, 0.339, 2.308, 1.967, 0.766, 2.789, 0.169, 0.402, 0.574, 1.801, 0.236, 0.466, 3.927, 0.949, 3.885, 0.757, 0.553, 3.005, 0.977, 3.503, 3.151, 0.735, 3.881, 3.09, 1.274, 0.241, 0.903, 0.819, 3.791, 2.826, 1.962, 0.531, 1.543, 3.103, 0.033] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_25", + "sample document": { + "location identifier": "B1", + "sample identifier": "plate B1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.827, 0.378, 2.861, 1.318, 0.551, 2.307, 1.737, 0.922, 3.63, 3.03, 3.814, 1.206, 0.161, 1.712, 3.044, 3.205, 2.956, 2.592, 1.485, 1.829, 0.519, 2.241, 0.042, 1.515, 0.932, 0.576, 1.545, 1.384, 0.312, 0.854, 3.999, 1.535, 2.873, 3.953, 0.878, 2.544, 1.963, 3.597, 2.324, 0.923, 0.386, 0.635, 3.832, 2.092, 2.912, 0.575, 3.72, 3.96, 0.262, 1.006, 2.074] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_26", + "sample document": { + "location identifier": "B2", + "sample identifier": "plate B2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.757, 1.589, 1.044, 3.365, 0.585, 0.335, 1.345, 0.386, 3.975, 0.761, 0.352, 0.61, 2.775, 3.031, 2.279, 2.332, 0.207, 0.833, 0.5, 1.242, 3.358, 0.268, 0.561, 1.442, 3.884, 2.409, 1.95, 2.603, 0.357, 0.856, 1.585, 1.122, 3.306, 2.779, 3.241, 3.946, 1.829, 0.588, 0.293, 2.208, 0.617, 3.211, 2.348, 0.161, 0.034, 0.025, 1.056, 3.06, 0.632, 2.242, 3.512] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_27", + "sample document": { + "location identifier": "B3", + "sample identifier": "plate B3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.126, 3.761, 3.764, 2.715, 0.488, 1.027, 3.601, 3.481, 2.175, 2.385, 2.741, 0.028, 3.118, 3.176, 3.23, 1.303, 3.996, 3.79, 2.333, 0.503, 3.619, 0.54, 2.292, 0.624, 0.147, 1.92, 0.399, 1.408, 3.858, 1.353, 2.889, 1.97, 2.115, 1.343, 2.458, 1.36, 3.541, 0.064, 2.752, 2.918, 2.227, 1.106, 2.117, 3.822, 1.876, 3.183, 3.23, 0.985, 0.804, 2.721, 1.059] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 521.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_28", + "sample document": { + "location identifier": "B4", + "sample identifier": "plate B4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.27, 2.299, 1.738, 3.893, 2.586, 1.469, 3.14, 2.568, 2.568, 0.627, 2.193, 3.622, 0.822, 3.495, 0.771, 1.912, 1.774, 0.717, 1.87, 1.762, 3.932, 1.037, 3.414, 2.276, 2.513, 2.422, 2.469, 2.747, 0.963, 2.69, 3.414, 0.603, 1.137, 0.293, 3.619, 3.67, 0.376, 1.45, 3.871, 3.89, 0.401, 1.495, 0.183, 2.29, 0.033, 1.483, 1.295, 0.327, 1.104, 1.27, 1.455] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_29", + "sample document": { + "location identifier": "B5", + "sample identifier": "plate B5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.267, 2.934, 0.958, 1.127, 2.232, 2.885, 3.462, 1.38, 0.164, 2.999, 0.392, 1.604, 3.878, 1.213, 1.589, 2.485, 0.528, 3.876, 1.1, 1.535, 0.324, 0.845, 1.979, 1.36, 2.436, 0.853, 1.123, 2.242, 1.03, 1.126, 2.142, 1.642, 3.693, 1.235, 3.146, 1.669, 0.178, 3.165, 1.386, 0.785, 0.914, 0.069, 3.707, 0.891, 0.008, 3.891, 0.305, 1.077, 2.444, 2.998, 0.767] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_30", + "sample document": { + "location identifier": "B6", + "sample identifier": "plate B6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.451, 0.004, 3.734, 1.13, 3.422, 0.955, 3.597, 2.691, 1.378, 1.761, 1.22, 0.35, 3.037, 0.857, 2.749, 1.911, 2.643, 2.067, 3.92, 2.306, 1.362, 2.489, 0.314, 0.621, 0.255, 1.138, 1.088, 1.352, 2.545, 0.548, 0.046, 3.798, 2.031, 0.359, 1.691, 1.638, 3.958, 0.104, 3.723, 0.714, 0.58, 0.474, 0.008, 3.024, 3.693, 3.719, 0.669, 0.033, 1.258, 1.979, 1.661] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_31", + "sample document": { + "location identifier": "B7", + "sample identifier": "plate B7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.01, 2.524, 0.691, 3.404, 1.961, 3.689, 3.112, 0.875, 2.284, 3.866, 2.245, 0.145, 0.83, 1.714, 1.422, 2.318, 2.678, 3.165, 1.111, 1.952, 2.538, 2.343, 3.205, 1.725, 0.888, 2.481, 1.29, 0.928, 0.536, 0.468, 1.054, 0.093, 0.565, 2.886, 1.036, 1.274, 1.34, 0.954, 3.729, 1.948, 0.845, 3.229, 1.439, 0.847, 2.335, 0.328, 3.177, 1.309, 2.271, 1.4, 1.99] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_32", + "sample document": { + "location identifier": "B8", + "sample identifier": "plate B8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.868, 0.147, 0.027, 3.123, 0.667, 3.318, 2.966, 2.516, 3.48, 2.399, 2.184, 0.338, 1.815, 2.812, 2.152, 3.58, 1.943, 0.678, 0.148, 0.978, 1.723, 3.436, 3.163, 1.106, 3.308, 0.903, 2.357, 3.39, 0.559, 3.303, 3.981, 2.656, 3.135, 2.477, 0.185, 3.946, 0.538, 3.763, 0.368, 1.955, 2.373, 2.438, 0.248, 3.548, 2.661, 2.89, 3.624, 2.034, 0.182, 0.748, 1.233] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_33", + "sample document": { + "location identifier": "B9", + "sample identifier": "plate B9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.63, 2.123, 0.422, 0.266, 1.431, 0.984, 2.92, 3.814, 3.763, 0.961, 3.576, 1.956, 0.177, 2.418, 3.527, 1.203, 3.337, 2.626, 2.206, 3.041, 2.18, 0.31, 2.192, 2.604, 3.285, 3.187, 3.614, 2.445, 0.418, 1.279, 0.322, 3.207, 3.811, 2.069, 3.35, 0.533, 2.713, 2.21, 2.754, 2.961, 1.618, 3.948, 0.604, 0.994, 2.797, 0.482, 0.07, 1.13, 3.133, 1.687, 0.286] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_34", + "sample document": { + "location identifier": "B10", + "sample identifier": "plate B10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.408, 1.976, 1.706, 3.053, 0.32, 3.93, 1.817, 0.981, 2.243, 1.369, 0.475, 3.396, 2.484, 0.638, 0.369, 2.144, 2.108, 3.067, 2.994, 2.489, 1.127, 3.872, 3.244, 1.423, 2.231, 3.705, 1.198, 3.807, 2.802, 3.116, 2.483, 3.311, 2.73, 0.993, 0.914, 1.23, 2.105, 3.016, 3.03, 0.603, 0.895, 1.229, 0.51, 1.591, 1.143, 0.552, 2.12, 0.355, 2.427, 2.337, 1.962] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_35", + "sample document": { + "location identifier": "B11", + "sample identifier": "plate B11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.062, 0.139, 3.197, 3.159, 3.535, 2.732, 0.282, 0.821, 0.615, 2.731, 2.009, 2.178, 3.127, 2.886, 1.163, 0.665, 1.491, 3.724, 3.139, 0.038, 3.091, 0.037, 2.39, 1.593, 3.898, 3.362, 1.652, 0.28, 1.679, 1.584, 0.843, 1.38, 0.464, 1.153, 0.421, 3.172, 3.532, 1.833, 1.378, 2.497, 1.823, 2.195, 2.414, 1.871, 2.886, 3.05, 1.383, 2.705, 3.979, 3.887, 0.628] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_36", + "sample document": { + "location identifier": "B12", + "sample identifier": "plate B12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.631, 3.288, 2.299, 2.871, 2.024, 1.748, 1.603, 3.261, 0.173, 1.08, 0.001, 3.142, 3.03, 1.888, 0.629, 1.714, 1.973, 2.465, 1.99, 1.132, 3.657, 2.345, 0.641, 2.215, 0.896, 1.622, 0.518, 2.707, 0.847, 1.979, 2.946, 0.3, 1.791, 0.955, 0.211, 2.091, 2.165, 2.282, 2.396, 1.423, 1.929, 2.572, 1.205, 1.417, 1.821, 3.052, 3.384, 3.983, 2.256, 1.336, 3.409] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_37", + "sample document": { + "location identifier": "B13", + "sample identifier": "plate B13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.24, 1.989, 2.754, 0.971, 2.286, 2.646, 0.083, 1.974, 0.402, 1.229, 2.895, 2.413, 2.194, 2.133, 3.7, 1.35, 2.074, 1.676, 2.538, 3.548, 3.69, 0.068, 0.566, 3.203, 1.084, 1.139, 3.223, 0.393, 1.843, 2.238, 0.535, 0.451, 3.511, 2.569, 2.706, 2.311, 3.037, 3.984, 1.925, 3.444, 2.081, 0.308, 1.994, 0.194, 3.033, 0.159, 3.011, 3.284, 2.121, 1.702, 1.309] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_38", + "sample document": { + "location identifier": "B14", + "sample identifier": "plate B14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.306, 3.718, 1.787, 3.719, 0.171, 1.423, 3.55, 3.886, 1.146, 3.423, 3.689, 0.13, 2.163, 0.694, 2.444, 2.901, 3.625, 3.426, 1.389, 2.312, 2.09, 3.751, 3.093, 1.466, 3.382, 2.074, 0.372, 0.17, 0.925, 2.128, 3.939, 2.272, 0.141, 0.929, 2.229, 0.732, 1.724, 2.849, 2.534, 0.888, 3.487, 0.098, 0.779, 0.021, 2.391, 0.177, 3.83, 3.499, 0.588, 1.258, 3.386] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_39", + "sample document": { + "location identifier": "B15", + "sample identifier": "plate B15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.857, 0.731, 3.389, 3.218, 2.555, 0.625, 0.32, 0.337, 2.096, 1.05, 3.379, 2.961, 3.017, 3.484, 1.417, 3.989, 1.233, 2.465, 1.711, 1.176, 0.775, 0.891, 0.501, 2.825, 1.992, 2.971, 3.071, 3.074, 3.204, 2.243, 0.872, 3.582, 3.666, 2.742, 0.081, 1.541, 0.751, 1.71, 3.674, 0.107, 1.403, 2.512, 0.438, 3.837, 0.107, 1.136, 1.761, 0.537, 0.974, 0.188, 2.596] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_40", + "sample document": { + "location identifier": "B16", + "sample identifier": "plate B16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.034, 2.876, 0.081, 2.61, 2.966, 0.23, 0.564, 1.226, 3.583, 1.553, 1.246, 1.132, 3.852, 0.178, 3.797, 3.294, 0.275, 3.403, 3.876, 3.237, 3.523, 2.791, 1.604, 3.773, 2.262, 0.453, 0.663, 2.717, 0.855, 1.21, 2.534, 2.099, 3.016, 3.646, 3.837, 0.705, 3.584, 0.131, 1.114, 1.31, 0.187, 0.483, 0.09, 2.554, 0.157, 1.38, 0.585, 3.659, 0.309, 1.841, 1.485] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_41", + "sample document": { + "location identifier": "B17", + "sample identifier": "plate B17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.134, 1.098, 0.951, 3.073, 2.243, 1.272, 0.308, 0.348, 2.512, 3.566, 1.846, 0.37, 2.373, 3.018, 3.146, 2.115, 0.206, 0.34, 3.092, 3.709, 0.144, 2.288, 2.565, 3.049, 3.039, 2.7, 3.049, 3.615, 0.882, 3.868, 1.004, 2.408, 3.013, 3.724, 1.4, 1.001, 2.065, 0.573, 1.593, 3.432, 3.276, 3.783, 2.602, 1.743, 2.34, 0.112, 1.717, 3.535, 1.011, 3.264, 0.379] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_42", + "sample document": { + "location identifier": "B18", + "sample identifier": "plate B18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.318, 1.217, 2.132, 1.34, 2.846, 2.533, 1.901, 0.033, 3.543, 2.223, 0.692, 3.465, 2.644, 2.562, 3.438, 1.357, 2.648, 1.618, 2.145, 0.05, 3.632, 2.747, 3.659, 0.433, 0.361, 3.686, 0.821, 0.708, 2.927, 0.982, 3.514, 2.604, 1.617, 3.488, 1.686, 1.19, 0.881, 2.383, 2.554, 2.467, 0.163, 0.54, 2.05, 1.209, 2.583, 0.317, 3.957, 3.181, 2.902, 2.755, 3.069] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_43", + "sample document": { + "location identifier": "B19", + "sample identifier": "plate B19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.916, 2.865, 3.214, 0.746, 0.57, 1.557, 1.698, 0.979, 3.159, 1.711, 1.193, 1.106, 2.56, 2.708, 2.087, 1.847, 3.155, 0.875, 2.247, 0.475, 0.264, 3.064, 3.677, 3.887, 3.092, 0.697, 2.45, 1.85, 0.044, 3.728, 1.64, 1.806, 0.171, 1.913, 1.597, 3.738, 2.403, 2.742, 1.115, 3.633, 3.183, 1.404, 3.394, 0.756, 2.97, 3.433, 3.489, 2.5, 0.495, 2.469, 0.802] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_44", + "sample document": { + "location identifier": "B20", + "sample identifier": "plate B20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.305, 0.655, 2.279, 2.804, 2.851, 3.188, 3.326, 1.654, 3.873, 3.106, 3.848, 0.934, 3.431, 0.071, 3.387, 0.934, 0.647, 1.11, 2.348, 3.444, 0.413, 3.76, 2.613, 1.292, 2.859, 3.67, 2.92, 0.917, 3.658, 1.208, 3.949, 1.354, 1.574, 2.926, 3.334, 1.15, 1.891, 3.108, 2.745, 0.55, 3.076, 1.087, 1.242, 0.526, 3.334, 0.469, 3.962, 0.685, 3.582, 2.498, 2.841] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_45", + "sample document": { + "location identifier": "B21", + "sample identifier": "plate B21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.389, 2.146, 3.025, 0.388, 2.545, 2.041, 0.987, 3.944, 3.181, 0.267, 2.409, 1.995, 2.665, 3.157, 2.493, 3.359, 0.505, 0.736, 2.236, 3.043, 1.538, 2.365, 1.798, 0.367, 3.325, 2.517, 2.087, 1.957, 2.389, 3.707, 2.235, 1.334, 1.16, 2.366, 2.56, 3.208, 2.549, 2.537, 0.788, 3.109, 0.904, 3.163, 3.564, 0.282, 0.667, 3.092, 2.576, 1.369, 0.841, 1.11, 3.457] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_46", + "sample document": { + "location identifier": "B22", + "sample identifier": "plate B22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.948, 1.346, 3.455, 1.302, 3.024, 0.347, 2.657, 1.063, 0.027, 3.954, 3.03, 1.554, 3.474, 2.032, 1.075, 0.835, 0.298, 0.597, 3.285, 0.81, 1.967, 3.947, 3.126, 2.139, 2.375, 2.801, 1.516, 3.7, 0.233, 3.941, 0.717, 1.115, 1.279, 0.25, 2.286, 3.987, 1.704, 1.063, 3.535, 2.86, 3.892, 1.474, 0.761, 3.155, 1.874, 1.608, 0.089, 2.25, 3.591, 2.256, 2.277] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_48", + "sample document": { + "location identifier": "B24", + "sample identifier": "plate B24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.504, 2.503, 3.126, 3.042, 3.711, 1.131, 3.382, 0.996, 0.814, 2.249, 1.051, 2.161, 1.512, 3.566, 2.847, 2.853, 2.423, 3.292, 2.354, 3.295, 0.463, 1.459, 3.32, 2.741, 1.099, 1.749, 0.396, 3.982, 3.848, 2.511, 0.051, 0.304, 3.432, 1.845, 0.761, 1.605, 2.849, 2.62, 0.233, 2.428, 1.597, 1.763, 1.471, 3.517, 3.337, 3.974, 1.799, 0.462, 2.087, 1.791, 2.251] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_50", + "sample document": { + "location identifier": "C1", + "sample identifier": "plate C1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.627, 1.605, 2.038, 0.401, 1.044, 3.182, 0.384, 1.943, 1.961, 0.734, 3.399, 1.148, 2.302, 2.197, 0.746, 2.729, 3.667, 2.804, 1.241, 0.003, 3.802, 3.058, 3.926, 1.697, 2.7, 3.988, 3.803, 3.404, 1.124, 3.949, 3.934, 1.894, 2.056, 0.26, 3.424, 2.699, 1.394, 1.443, 3.716, 2.423, 2.465, 0.677, 2.271, 1.693, 2.197, 0.614, 3.168, 1.319, 2.59, 1.245, 2.132] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_51", + "sample document": { + "location identifier": "C2", + "sample identifier": "plate C2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.657, 0.845, 1.788, 2.449, 1.568, 1.679, 0.34, 1.701, 1.056, 3.379, 0.979, 0.818, 2.011, 0.8, 1.505, 3.092, 2.042, 2.773, 2.047, 1.334, 2.223, 3.088, 2.818, 1.538, 3.125, 0.786, 2.232, 3.499, 2.086, 0.819, 2.483, 0.814, 3.879, 1.817, 2.276, 1.048, 0.267, 1.81, 1.856, 1.019, 1.053, 3.742, 2.659, 3.044, 1.485, 3.858, 0.259, 0.893, 0.692, 1.522, 1.125] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_52", + "sample document": { + "location identifier": "C3", + "sample identifier": "plate C3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.546, 0.543, 3.91, 3.909, 2.568, 2.027, 0.25, 3.323, 0.781, 3.447, 0.841, 3.614, 0.236, 0.895, 0.165, 0.938, 0.194, 2.523, 0.456, 2.824, 0.231, 0.916, 1.027, 0.281, 2.481, 0.428, 3.774, 0.052, 3.266, 0.526, 1.338, 2.806, 0.563, 3.693, 3.936, 0.27, 3.969, 1.908, 3.707, 3.021, 0.017, 2.486, 1.074, 1.572, 0.212, 0.127, 2.422, 2.148, 1.32, 2.92, 0.065] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_53", + "sample document": { + "location identifier": "C4", + "sample identifier": "plate C4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.37, 0.236, 2.697, 0.893, 1.63, 3.515, 3.628, 1.427, 2.14, 2.252, 0.197, 0.057, 0.254, 2.108, 2.034, 3.051, 0.543, 0.959, 3.894, 0.969, 2.286, 2.815, 1.434, 2.806, 1.744, 3.842, 3.455, 0.069, 2.354, 2.005, 1.626, 2.732, 0.346, 0.461, 2.968, 2.57, 1.866, 2.799, 2.306, 0.755, 0.34, 0.48, 1.567, 0.768, 3.819, 2.429, 0.819, 3.463, 2.177, 1.076, 1.879] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_54", + "sample document": { + "location identifier": "C5", + "sample identifier": "plate C5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.188, 1.425, 1.95, 1.778, 3.554, 2.802, 3.891, 3.149, 1.787, 0.06, 3.559, 3.073, 0.134, 0.626, 1.465, 3.71, 3.793, 3.14, 3.463, 1.184, 1.743, 2.652, 3.139, 0.628, 1.806, 1.247, 0.665, 2.987, 3.315, 3.022, 3.991, 1.891, 1.278, 0.125, 0.437, 1.306, 2.395, 2.683, 3.413, 3.768, 1.975, 3.65, 0.518, 0.694, 0.781, 1.407, 1.432, 0.142, 2.353, 2.718, 1.026] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_55", + "sample document": { + "location identifier": "C6", + "sample identifier": "plate C6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.323, 2.713, 3.891, 0.136, 2.535, 2.286, 1.321, 3.971, 2.307, 2.136, 0.903, 3.833, 2.765, 0.069, 1.667, 1.795, 0.009, 0.189, 0.159, 1.315, 1.109, 3.726, 3.695, 3.209, 2.092, 2.134, 2.444, 3.847, 0.399, 3.814, 0.523, 0.633, 0.596, 1.995, 3.668, 3.177, 1.386, 3.989, 1.901, 3.02, 1.073, 2.711, 1.106, 1.631, 1.071, 3.817, 1.753, 0.625, 3.114, 3.611, 1.423] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_56", + "sample document": { + "location identifier": "C7", + "sample identifier": "plate C7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.952, 2.194, 1.403, 3.917, 0.597, 3.018, 0.681, 2.044, 0.401, 3.841, 1.474, 3.572, 2.492, 1.612, 0.27, 3.236, 0.769, 0.401, 2.489, 0.408, 0.02, 2.288, 1.139, 0.241, 2.397, 2.619, 2.064, 2.138, 2.275, 0.381, 1.819, 0.732, 0.787, 2.391, 0.571, 2.438, 3.193, 2.078, 3.07, 0.159, 0.705, 1.944, 1.499, 3.178, 3.599, 3.139, 2.614, 0.018, 0.8, 0.58, 0.983] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_57", + "sample document": { + "location identifier": "C8", + "sample identifier": "plate C8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.224, 0.624, 3.203, 1.403, 1.664, 1.055, 1.161, 1.519, 1.977, 0.953, 2.542, 3.768, 0.02, 2.022, 0.741, 2.784, 0.101, 1.041, 1.832, 0.043, 2.691, 1.33, 2.329, 3.702, 2.075, 0.788, 1.96, 0.642, 3.258, 0.005, 2.045, 1.337, 1.695, 3.397, 1.594, 0.108, 1.584, 0.987, 2.906, 1.382, 2.031, 0.558, 1.093, 3.205, 2.162, 2.176, 1.479, 1.155, 2.857, 0.354, 2.513] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_58", + "sample document": { + "location identifier": "C9", + "sample identifier": "plate C9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.976, 2.968, 0.537, 2.292, 2.894, 2.295, 3.5, 3.328, 0.875, 3.094, 0.519, 2.261, 1.972, 2.908, 1.204, 2.073, 0.622, 0.427, 0.633, 1.2, 3.113, 2.134, 0.449, 2.011, 2.132, 0.236, 3.123, 1.54, 3.898, 3.308, 0.804, 1.785, 2.903, 1.491, 3.068, 2.369, 1.157, 1.105, 2.7, 1.812, 2.084, 1.658, 2.031, 2.288, 1.512, 2.297, 3.121, 0.297, 0.957, 0.102, 0.857] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_59", + "sample document": { + "location identifier": "C10", + "sample identifier": "plate C10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.728, 2.223, 3.154, 3.399, 0.841, 2.519, 2.525, 0.159, 2.657, 3.171, 1.96, 3.429, 1.566, 2.29, 2.734, 3.357, 0.48, 3.839, 2.835, 0.915, 3.516, 1.726, 2.821, 3.116, 1.454, 0.103, 2.161, 0.499, 3.834, 1.115, 2.826, 0.582, 3.796, 2.451, 0.076, 3.562, 3.749, 2.092, 2.226, 3.849, 2.632, 0.946, 0.043, 2.641, 0.124, 2.228, 0.464, 3.997, 2.778, 2.94, 2.641] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_60", + "sample document": { + "location identifier": "C11", + "sample identifier": "plate C11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.457, 2.122, 3.186, 1.34, 3.001, 3.402, 0.038, 1.944, 0.738, 0.358, 2.025, 0.324, 1.541, 0.344, 1.377, 3.633, 3.114, 2.213, 3.171, 3.607, 2.388, 1.612, 2.985, 2.283, 2.57, 1.683, 0.179, 2.992, 3.226, 3.638, 2.163, 1.721, 0.894, 2.474, 2.369, 2.46, 0.609, 1.111, 1.074, 0.16, 3.711, 0.147, 1.488, 3.491, 0.606, 0.621, 2.501, 2.296, 2.746, 2.595, 1.349] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_61", + "sample document": { + "location identifier": "C12", + "sample identifier": "plate C12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.784, 3.606, 3.332, 0.253, 2.844, 3.136, 0.903, 2.769, 1.318, 3.222, 1.046, 2.718, 1.099, 2.195, 0.304, 3.43, 3.067, 1.975, 2.917, 3.024, 2.003, 1.139, 3.011, 3.896, 2.24, 0.124, 3.494, 1.676, 1.949, 3.181, 1.882, 0.245, 0.63, 2.289, 0.379, 2.115, 1.561, 2.221, 3.524, 3.323, 3.705, 2.341, 3.755, 0.937, 2.664, 1.428, 0.389, 1.296, 0.301, 1.19, 3.434] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_62", + "sample document": { + "location identifier": "C13", + "sample identifier": "plate C13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.321, 3.828, 3.57, 3.346, 0.644, 0.594, 3.435, 2.012, 2.72, 3.641, 3.226, 0.82, 2.136, 1.339, 0.8, 2.087, 2.81, 1.815, 2.189, 1.869, 0.846, 2.451, 3.593, 3.318, 3.662, 1.383, 2.074, 1.232, 0.812, 3.734, 2.198, 1.374, 0.759, 3.747, 1.561, 0.417, 1.06, 2.942, 3.734, 1.521, 2.125, 0.208, 0.803, 3.682, 0.479, 1.52, 1.618, 3.597, 1.864, 3.34, 1.579] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 522.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_63", + "sample document": { + "location identifier": "C14", + "sample identifier": "plate C14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.48, 2.112, 3.32, 2.587, 1.869, 0.234, 0.252, 3.684, 3.26, 2.519, 2.203, 1.199, 2.985, 1.443, 1.851, 0.061, 2.389, 3.778, 0.383, 1.027, 3.867, 2.081, 0.667, 3.744, 0.637, 1.647, 3.911, 2.838, 2.141, 3.765, 2.476, 3.368, 1.471, 2.155, 2.717, 3.261, 1.438, 1.159, 3.691, 0.182, 0.807, 3.258, 0.473, 3.001, 3.921, 3.008, 1.818, 2.238, 2.627, 1.458, 3.229] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_64", + "sample document": { + "location identifier": "C15", + "sample identifier": "plate C15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.819, 1.48, 2.312, 1.711, 1.399, 1.445, 3.576, 1.95, 0.222, 0.323, 1.413, 1.542, 3.495, 0.042, 2.835, 3.728, 0.83, 2.726, 2.589, 2.623, 1.229, 0.086, 0.201, 0.22, 0.608, 1.607, 1.666, 3.822, 1.628, 3.829, 1.672, 0.211, 0.682, 0.535, 2.657, 1.887, 3.159, 0.444, 1.318, 1.816, 1.861, 3.209, 3.468, 3.858, 3.393, 1.716, 0.977, 2.958, 1.086, 3.28, 0.987] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_65", + "sample document": { + "location identifier": "C16", + "sample identifier": "plate C16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.512, 0.037, 2.835, 1.999, 3.732, 1.279, 2.092, 1.102, 3.791, 3.778, 3.754, 0.322, 0.393, 2.65, 1.202, 0.86, 2.959, 1.385, 0.948, 0.568, 0.386, 1.407, 0.773, 0.761, 2.02, 0.617, 0.342, 0.826, 2.892, 0.63, 2.707, 2.736, 2.347, 2.841, 2.16, 0.173, 1.846, 2.536, 2.924, 0.608, 1.067, 3.341, 1.527, 2.037, 2.107, 2.886, 3.075, 1.208, 2.191, 0.856, 2.018] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_66", + "sample document": { + "location identifier": "C17", + "sample identifier": "plate C17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.573, 0.137, 2.712, 0.601, 2.105, 3.264, 2.073, 3.978, 3.115, 0.936, 1.265, 2.21, 3.161, 1.071, 1.018, 1.974, 1.552, 0.49, 1.028, 3.013, 0.423, 2.461, 0.34, 3.501, 1.044, 3.88, 2.735, 2.654, 3.133, 1.541, 3.134, 2.635, 2.036, 2.611, 1.133, 2.598, 3.635, 2.239, 0.055, 0.909, 3.772, 2.557, 3.808, 3.671, 3.802, 1.131, 2.366, 0.966, 1.089, 0.912, 1.523] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_67", + "sample document": { + "location identifier": "C18", + "sample identifier": "plate C18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.718, 1.162, 1.843, 1.594, 3.112, 3.797, 3.21, 3.557, 2.224, 0.529, 3.419, 0.844, 1.573, 1.802, 2.629, 0.173, 0.549, 3.938, 2.419, 2.339, 3.312, 0.434, 0.119, 3.24, 1.865, 2.652, 0.668, 3.699, 3.913, 1.513, 1.769, 1.564, 2.221, 0.018, 2.416, 1.473, 0.193, 1.017, 2.021, 2.8, 0.424, 2.682, 1.83, 0.379, 0.353, 1.712, 2.235, 1.868, 1.173, 0.957, 1.817] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_68", + "sample document": { + "location identifier": "C19", + "sample identifier": "plate C19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.027, 2.669, 2.572, 2.21, 0.283, 1.042, 2.602, 3.728, 0.459, 3.129, 3.511, 3.643, 0.711, 2.76, 1.855, 2.623, 1.554, 3.386, 1.155, 3.979, 3.531, 1.916, 3.619, 1.914, 0.63, 2.604, 3.739, 2.886, 0.153, 0.416, 2.799, 2.525, 2.955, 3.696, 0.741, 2.895, 3.648, 1.807, 2.133, 0.43, 1.59, 1.288, 1.561, 3.671, 0.912, 3.038, 1.119, 1.619, 2.497, 3.089, 0.68] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_69", + "sample document": { + "location identifier": "C20", + "sample identifier": "plate C20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.482, 0.017, 0.978, 2.285, 3.111, 3.05, 0.658, 1.58, 1.678, 1.303, 3.716, 3.575, 0.043, 0.329, 0.985, 0.688, 1.014, 2.018, 2.96, 2.974, 3.747, 1.253, 0.725, 2.389, 2.242, 0.355, 3.948, 1.002, 1.592, 1.485, 2.12, 0.388, 1.063, 3.736, 0.316, 2.508, 1.977, 1.411, 1.63, 3.844, 2.99, 0.227, 0.454, 3.127, 1.874, 1.713, 1.518, 3.341, 3.926, 2.349, 0.104] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_70", + "sample document": { + "location identifier": "C21", + "sample identifier": "plate C21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.6, 3.537, 0.115, 0.933, 1.229, 3.291, 2.589, 0.042, 2.756, 3.101, 3.655, 3.987, 0.193, 3.183, 3.327, 2.511, 0.306, 0.012, 2.476, 2.711, 3.603, 0.388, 3.115, 3.983, 3.519, 0.798, 1.598, 0.514, 0.529, 2.836, 0.606, 1.075, 3.242, 1.38, 2.519, 0.851, 0.948, 2.803, 3.087, 3.217, 3.388, 1.368, 2.873, 0.742, 3.335, 0.239, 0.261, 3.944, 2.547, 3.201, 1.211] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_71", + "sample document": { + "location identifier": "C22", + "sample identifier": "plate C22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.328, 1.449, 3.638, 0.501, 3.211, 0.422, 0.131, 1.413, 0.431, 1.693, 2.074, 3.513, 3.919, 2.495, 2.58, 0.745, 2.813, 0.663, 2.475, 1.562, 1.503, 0.925, 3.259, 3.323, 2.234, 1.514, 2.372, 0.648, 3.28, 0.537, 1.654, 1.966, 1.327, 1.625, 1.278, 3.625, 3.603, 0.878, 3.307, 0.428, 0.817, 1.389, 2.656, 1.524, 1.313, 1.855, 2.954, 2.247, 0.754, 3.494, 1.448] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_72", + "sample document": { + "location identifier": "C23", + "sample identifier": "plate C23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.28, 0.071, 1.639, 3.708, 2.403, 2.19, 0.315, 2.266, 1.696, 2.05, 3.482, 2.133, 3.893, 0.038, 0.107, 2.185, 2.294, 1.217, 2.954, 1.141, 1.934, 1.355, 2.047, 0.745, 0.113, 2.269, 1.735, 2.009, 0.379, 2.56, 0.124, 3.893, 3.785, 3.088, 2.374, 1.895, 3.688, 1.916, 2.874, 1.435, 3.288, 2.612, 1.61, 2.378, 1.334, 3.256, 2.762, 1.485, 1.205, 3.669, 0.66] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_73", + "sample document": { + "location identifier": "C24", + "sample identifier": "plate C24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.03, 1.799, 2.352, 3.514, 1.924, 2.023, 0.894, 3.594, 0.133, 0.454, 2.305, 1.887, 3.136, 1.925, 3.589, 2.347, 0.804, 1.664, 2.212, 2.497, 0.377, 2.342, 1.519, 1.853, 3.322, 3.745, 3.669, 3.41, 0.857, 3.507, 0.249, 0.804, 0.709, 1.899, 3.094, 2.094, 1.433, 3.574, 0.449, 3.871, 2.794, 2.322, 2.741, 0.98, 0.982, 0.724, 2.474, 0.452, 1.745, 0.908, 1.957] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_75", + "sample document": { + "location identifier": "D1", + "sample identifier": "plate D1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.82, 2.993, 1.172, 0.283, 2.688, 0.28, 0.498, 0.191, 2.179, 2.354, 1.483, 2.736, 0.626, 0.205, 1.501, 1.177, 1.236, 2.831, 1.494, 0.913, 1.23, 1.214, 2.34, 3.702, 2.054, 3.601, 0.539, 0.871, 2.597, 1.27, 3.217, 1.665, 3.948, 1.549, 0.428, 1.811, 3.536, 1.616, 0.405, 1.814, 0.934, 3.383, 2.27, 1.517, 1.311, 3.586, 2.114, 0.775, 3.481, 3.547, 1.237] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_76", + "sample document": { + "location identifier": "D2", + "sample identifier": "plate D2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.62, 0.25, 3.994, 0.727, 2.605, 0.652, 1.469, 2.229, 3.087, 3.74, 3.627, 1.594, 0.908, 3.137, 3.817, 2.787, 3.076, 3.776, 3.69, 1.64, 3.62, 2.425, 3.68, 3.979, 1.846, 2.944, 0.823, 2.391, 2.468, 1.486, 3.763, 1.389, 3.05, 0.033, 1.596, 1.415, 3.953, 0.822, 1.823, 1.158, 2.067, 3.387, 1.318, 2.073, 1.306, 1.788, 1.362, 2.379, 1.493, 0.798, 3.038] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_77", + "sample document": { + "location identifier": "D3", + "sample identifier": "plate D3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.999, 3.791, 1.906, 1.616, 3.195, 0.569, 0.015, 2.88, 3.661, 3.828, 3.077, 3.761, 1.6, 3.976, 2.237, 2.544, 0.875, 1.541, 2.402, 2.834, 2.253, 1.952, 2.531, 3.573, 0.233, 1.106, 1.607, 2.672, 0.058, 1.582, 2.444, 0.898, 1.669, 2.448, 2.764, 1.598, 1.143, 2.416, 2.401, 0.845, 3.938, 1.942, 2.161, 1.33, 2.989, 3.626, 3.718, 2.096, 3.068, 3.243, 0.486] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_78", + "sample document": { + "location identifier": "D4", + "sample identifier": "plate D4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.838, 3.09, 1.964, 0.784, 3.046, 1.259, 2.332, 1.383, 2.088, 2.962, 1.342, 2.821, 2.078, 1.384, 2.179, 2.091, 3.151, 1.212, 0.638, 1.4, 2.458, 3.139, 1.557, 2.895, 0.311, 3.791, 1.2, 0.584, 0.607, 1.388, 3.511, 3.604, 0.814, 1.095, 1.605, 1.807, 3.705, 1.664, 3.718, 0.339, 2.811, 1.033, 0.312, 1.883, 2.595, 3.12, 0.082, 3.945, 0.809, 1.534, 0.566] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_79", + "sample document": { + "location identifier": "D5", + "sample identifier": "plate D5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.883, 2.429, 1.843, 2.028, 1.698, 1.533, 3.068, 0.473, 3.255, 0.059, 1.748, 0.776, 0.699, 3.451, 1.738, 2.007, 0.983, 3.779, 0.371, 2.386, 1.487, 1.494, 0.299, 2.589, 1.425, 2.826, 3.674, 0.3, 1.19, 3.708, 1.254, 3.774, 3.072, 0.822, 2.627, 1.174, 2.971, 3.067, 3.906, 0.273, 0.636, 1.191, 0.463, 0.28, 1.063, 0.257, 3.613, 2.431, 0.857, 1.113, 3.099] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_80", + "sample document": { + "location identifier": "D6", + "sample identifier": "plate D6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.166, 0.437, 3.148, 3.078, 3.389, 2.129, 3.254, 0.602, 2.872, 1.859, 2.768, 3.282, 3.546, 2.804, 1.973, 1.703, 3.877, 0.824, 0.563, 3.035, 1.916, 3.872, 0.098, 1.749, 0.296, 1.03, 0.019, 1.525, 1.168, 3.213, 1.242, 3.442, 0.076, 0.609, 1.088, 3.336, 3.923, 1.743, 3.237, 3.044, 3.717, 2.464, 1.034, 2.414, 1.868, 1.908, 0.916, 1.475, 3.089, 2.553, 3.736] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_81", + "sample document": { + "location identifier": "D7", + "sample identifier": "plate D7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.607, 0.293, 2.077, 1.183, 0.293, 0.339, 1.399, 2.781, 2.358, 2.11, 1.728, 3.434, 3.658, 0.617, 3.326, 3.205, 2.937, 1.715, 2.636, 1.779, 2.133, 1.586, 1.519, 3.318, 3.451, 2.838, 1.683, 3.881, 2.388, 0.114, 2.543, 2.436, 2.615, 3.477, 3.634, 3.148, 1.999, 3.426, 0.794, 2.996, 2.524, 2.961, 0.878, 0.934, 1.988, 3.03, 1.375, 1.797, 2.542, 2.702, 1.979] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_82", + "sample document": { + "location identifier": "D8", + "sample identifier": "plate D8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.76, 0.453, 0.773, 1.602, 0.02, 2.774, 2.758, 1.731, 1.455, 2.655, 1.517, 0.393, 2.244, 3.566, 3.292, 0.818, 0.181, 0.982, 0.177, 1.206, 3.511, 0.921, 3.639, 3.254, 3.171, 0.708, 0.584, 1.329, 0.42, 1.462, 3.886, 1.339, 3.685, 2.134, 2.783, 1.982, 1.841, 1.874, 3.613, 0.374, 3.24, 1.694, 3.338, 0.34, 1.006, 2.567, 2.633, 1.368, 2.696, 2.211, 1.194] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_83", + "sample document": { + "location identifier": "D9", + "sample identifier": "plate D9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.814, 2.365, 1.495, 2.468, 2.838, 0.813, 1.518, 2.43, 3.312, 2.189, 1.428, 1.311, 3.993, 2.769, 0.178, 0.708, 0.11, 0.782, 1.309, 2.977, 2.306, 1.368, 3.802, 1.966, 1.816, 1.582, 3.298, 2.248, 0.603, 2.075, 3.216, 2.633, 2.208, 0.267, 3.072, 2.974, 2.189, 3.665, 3.945, 1.169, 0.322, 3.444, 0.301, 2.184, 1.811, 0.382, 3.345, 1.571, 0.828, 1.859, 2.523] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_84", + "sample document": { + "location identifier": "D10", + "sample identifier": "plate D10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.586, 1.387, 3.234, 2.888, 3.445, 2.562, 3.529, 0.651, 1.256, 1.514, 3.27, 1.826, 1.237, 2.973, 2.795, 3.102, 3.725, 3.696, 1.204, 2.519, 0.444, 0.837, 0.14, 2.655, 2.862, 1.067, 1.617, 0.154, 1.434, 2.237, 1.727, 1.42, 2.744, 3.552, 2.63, 1.245, 2.974, 1.379, 3.626, 0.411, 2.659, 3.014, 2.689, 3.654, 1.051, 1.617, 3.063, 3.211, 3.015, 1.28, 3.619] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_85", + "sample document": { + "location identifier": "D11", + "sample identifier": "plate D11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.874, 3.623, 3.34, 2.078, 3.748, 1.247, 0.578, 0.026, 2.377, 0.944, 3.374, 3.217, 3.018, 3.787, 1.85, 3.082, 1.685, 0.342, 1.549, 0.127, 2.346, 0.07, 0.793, 3.859, 1.43, 2.148, 0.485, 1.603, 1.245, 2.003, 2.406, 1.139, 0.154, 2.617, 3.852, 1.796, 3.404, 1.473, 2.881, 3.998, 2.395, 1.352, 1.249, 3.467, 3.285, 3.796, 3.67, 3.867, 3.2, 2.534, 1.378] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_86", + "sample document": { + "location identifier": "D12", + "sample identifier": "plate D12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.868, 1.465, 1.152, 1.273, 1.804, 2.83, 3.481, 0.648, 1.6, 0.762, 2.975, 2.781, 0.373, 2.538, 2.235, 3.063, 0.4, 3.935, 0.053, 3.678, 0.211, 1.461, 1.551, 1.731, 0.993, 2.82, 1.325, 0.574, 1.633, 2.477, 0.617, 2.402, 2.71, 0.625, 3.537, 3.673, 3.001, 1.344, 2.047, 2.966, 3.923, 0.825, 1.28, 3.236, 3.42, 2.571, 0.875, 0.928, 1.049, 0.733, 3.269] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_87", + "sample document": { + "location identifier": "D13", + "sample identifier": "plate D13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.932, 3.146, 2.856, 1.167, 1.407, 3.914, 3.42, 0.279, 2.983, 1.504, 2.906, 3.014, 3.122, 0.144, 0.572, 0.07, 3.748, 3.0, 2.562, 0.061, 3.055, 1.887, 1.087, 3.755, 3.386, 0.18, 2.315, 2.311, 2.421, 1.945, 0.397, 3.524, 0.899, 3.208, 0.685, 3.255, 3.854, 3.457, 2.13, 3.758, 3.58, 1.065, 3.063, 1.462, 1.016, 1.81, 2.158, 3.092, 2.847, 2.501, 1.126] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_88", + "sample document": { + "location identifier": "D14", + "sample identifier": "plate D14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.927, 2.487, 0.671, 0.213, 2.044, 2.059, 3.1, 1.78, 1.226, 1.599, 1.109, 1.857, 1.038, 1.106, 3.382, 2.114, 3.914, 3.458, 1.317, 0.216, 0.291, 0.87, 2.803, 0.481, 1.99, 2.823, 3.624, 2.739, 1.576, 2.022, 3.223, 3.463, 3.92, 0.819, 2.469, 1.037, 0.228, 2.994, 2.641, 1.196, 0.753, 1.677, 0.903, 2.159, 2.47, 3.207, 2.025, 0.355, 1.633, 3.695, 2.243] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_89", + "sample document": { + "location identifier": "D15", + "sample identifier": "plate D15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.633, 1.53, 2.284, 0.835, 1.057, 3.683, 0.189, 2.223, 3.22, 2.434, 0.361, 0.204, 3.204, 2.376, 1.646, 1.937, 0.218, 2.637, 2.345, 1.886, 0.92, 0.816, 0.12, 3.462, 2.613, 3.967, 0.644, 2.01, 2.782, 0.798, 3.269, 1.105, 1.881, 3.778, 3.589, 1.932, 1.635, 3.984, 1.412, 1.353, 0.038, 0.771, 3.42, 2.761, 0.391, 1.472, 1.698, 3.783, 0.824, 1.27, 1.807] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_90", + "sample document": { + "location identifier": "D16", + "sample identifier": "plate D16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.718, 3.288, 1.808, 1.322, 2.816, 1.409, 2.821, 2.221, 1.09, 3.039, 2.179, 3.44, 2.422, 3.165, 3.256, 2.323, 3.425, 2.786, 3.713, 0.301, 0.234, 1.225, 0.991, 1.847, 0.149, 1.396, 1.359, 3.071, 1.14, 2.268, 0.861, 1.186, 1.511, 2.991, 1.551, 1.817, 0.072, 2.455, 0.772, 0.523, 2.813, 1.762, 0.321, 2.314, 1.859, 1.33, 0.998, 3.596, 1.135, 3.149, 2.273] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_91", + "sample document": { + "location identifier": "D17", + "sample identifier": "plate D17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.996, 1.11, 0.969, 1.572, 0.492, 2.296, 3.96, 1.173, 1.42, 0.05, 3.75, 1.08, 2.821, 2.178, 0.992, 1.928, 3.431, 1.613, 1.439, 2.25, 0.969, 2.014, 3.19, 1.487, 2.471, 0.903, 2.677, 3.988, 2.818, 0.397, 1.762, 1.935, 1.991, 3.995, 3.865, 0.075, 0.542, 1.418, 1.058, 3.52, 0.111, 1.282, 3.351, 0.472, 3.063, 0.682, 1.5, 0.136, 0.867, 3.402, 1.567] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_92", + "sample document": { + "location identifier": "D18", + "sample identifier": "plate D18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.982, 3.696, 0.898, 1.303, 2.981, 1.92, 3.482, 3.1, 3.589, 3.618, 3.972, 2.355, 1.022, 2.287, 1.815, 3.089, 2.826, 2.313, 0.916, 1.386, 2.012, 0.555, 1.918, 2.139, 3.687, 2.662, 2.717, 2.424, 1.789, 3.403, 2.541, 3.121, 3.416, 2.83, 3.779, 2.239, 1.092, 2.692, 0.883, 2.155, 1.059, 2.317, 1.469, 3.901, 0.138, 2.927, 2.328, 2.185, 1.247, 1.592, 2.673] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_93", + "sample document": { + "location identifier": "D19", + "sample identifier": "plate D19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.823, 3.95, 2.016, 3.554, 1.427, 1.777, 2.759, 1.615, 0.319, 3.202, 1.058, 1.31, 0.185, 1.077, 0.851, 2.938, 2.192, 2.507, 3.576, 1.996, 0.134, 1.429, 2.76, 0.326, 3.695, 3.085, 2.016, 2.001, 0.76, 0.333, 0.532, 1.176, 0.197, 0.729, 0.718, 3.17, 1.4, 3.276, 2.351, 0.461, 2.333, 1.076, 0.564, 2.952, 0.001, 1.006, 1.283, 2.824, 3.286, 3.988, 0.136] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_94", + "sample document": { + "location identifier": "D20", + "sample identifier": "plate D20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.677, 1.671, 3.595, 2.538, 0.393, 1.189, 1.69, 3.858, 2.342, 3.761, 0.757, 0.855, 3.985, 2.67, 3.882, 1.113, 3.456, 0.359, 1.681, 1.538, 2.915, 0.155, 3.114, 3.663, 3.058, 0.865, 3.807, 0.324, 2.688, 1.802, 3.192, 2.714, 0.771, 0.196, 0.855, 3.504, 0.601, 2.19, 0.324, 1.98, 3.71, 3.417, 0.009, 0.699, 1.575, 0.22, 0.579, 0.282, 0.119, 3.892, 1.827] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_95", + "sample document": { + "location identifier": "D21", + "sample identifier": "plate D21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.465, 1.605, 2.45, 1.221, 3.521, 2.556, 3.932, 3.48, 3.527, 1.382, 1.365, 1.17, 0.54, 0.569, 2.043, 0.084, 3.788, 1.815, 0.377, 0.512, 1.265, 0.034, 3.701, 1.828, 3.497, 0.146, 2.414, 2.088, 2.837, 0.286, 3.525, 0.205, 2.795, 3.974, 0.727, 1.108, 2.321, 2.975, 1.333, 0.947, 0.669, 2.71, 0.796, 0.598, 2.344, 2.247, 3.469, 0.13, 3.531, 0.136, 0.79] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_96", + "sample document": { + "location identifier": "D22", + "sample identifier": "plate D22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.467, 3.741, 3.38, 0.562, 2.43, 1.904, 0.622, 1.723, 3.375, 0.141, 1.844, 0.642, 3.241, 1.856, 1.16, 2.374, 0.565, 3.842, 0.935, 1.763, 0.812, 0.481, 3.43, 3.842, 2.554, 3.237, 3.102, 3.483, 1.25, 0.676, 2.284, 2.556, 2.701, 3.495, 1.057, 0.463, 3.414, 3.412, 2.296, 3.204, 1.699, 1.251, 1.958, 0.805, 2.825, 2.067, 1.555, 2.741, 1.184, 3.872, 2.903] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_97", + "sample document": { + "location identifier": "D23", + "sample identifier": "plate D23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.288, 2.596, 2.372, 3.978, 1.986, 0.31, 3.538, 2.007, 3.193, 2.801, 1.138, 0.473, 2.698, 1.857, 3.287, 1.94, 3.745, 0.798, 0.696, 2.959, 1.153, 1.545, 1.731, 0.064, 3.56, 2.522, 2.625, 1.017, 0.487, 1.681, 0.361, 2.299, 1.377, 1.773, 1.995, 3.959, 0.329, 3.517, 3.071, 0.152, 3.876, 1.404, 3.102, 0.402, 0.56, 0.778, 3.26, 2.947, 3.537, 0.126, 1.809] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_98", + "sample document": { + "location identifier": "D24", + "sample identifier": "plate D24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.942, 0.487, 0.912, 1.749, 2.742, 0.865, 2.308, 0.417, 3.464, 1.685, 2.52, 1.52, 1.511, 2.44, 2.839, 3.096, 0.925, 3.862, 3.328, 1.611, 0.228, 1.727, 0.543, 3.083, 3.749, 2.443, 1.328, 3.503, 2.782, 3.261, 3.677, 1.479, 0.36, 3.872, 2.418, 1.811, 0.464, 0.023, 3.252, 3.094, 2.02, 3.1, 3.606, 2.467, 1.356, 3.884, 1.59, 1.961, 1.721, 1.682, 2.335] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_100", + "sample document": { + "location identifier": "E1", + "sample identifier": "plate E1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.085, 0.209, 2.515, 1.581, 0.214, 3.943, 1.829, 2.0, 0.299, 3.536, 2.804, 1.634, 0.202, 2.007, 1.04, 1.159, 1.639, 0.021, 1.027, 2.631, 0.901, 0.609, 0.233, 3.59, 1.128, 2.12, 2.076, 1.727, 3.864, 0.852, 3.367, 1.782, 1.1, 0.926, 0.592, 1.27, 1.845, 2.29, 2.203, 1.867, 2.634, 2.022, 2.953, 3.557, 3.215, 1.465, 3.404, 0.46, 0.315, 2.724, 3.95] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_102", + "sample document": { + "location identifier": "E3", + "sample identifier": "plate E3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.045, 0.545, 3.41, 0.602, 0.121, 1.533, 3.053, 2.555, 0.818, 3.3, 2.549, 0.79, 3.377, 0.251, 2.691, 0.995, 2.544, 2.741, 3.932, 2.483, 3.784, 3.296, 2.475, 0.392, 1.51, 1.708, 3.159, 1.464, 2.991, 2.15, 1.287, 2.18, 2.729, 2.588, 2.57, 0.866, 1.729, 0.299, 1.305, 3.555, 2.996, 0.936, 1.298, 1.994, 0.372, 1.047, 0.732, 3.748, 3.841, 2.891, 0.961] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_103", + "sample document": { + "location identifier": "E4", + "sample identifier": "plate E4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.646, 2.261, 2.449, 0.342, 3.748, 2.069, 3.018, 3.091, 2.413, 2.374, 1.589, 3.564, 2.668, 2.012, 0.368, 2.06, 0.788, 1.681, 1.824, 3.266, 2.245, 1.435, 0.376, 3.486, 2.848, 1.998, 0.48, 0.02, 0.463, 0.976, 3.41, 1.623, 0.099, 1.188, 0.64, 3.919, 0.28, 2.245, 2.821, 2.796, 2.71, 1.207, 2.892, 1.181, 1.407, 1.372, 2.63, 3.981, 0.004, 2.986, 3.943] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_104", + "sample document": { + "location identifier": "E5", + "sample identifier": "plate E5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.067, 2.016, 3.625, 2.715, 3.21, 1.885, 2.962, 1.494, 1.75, 1.588, 2.998, 2.627, 1.436, 2.963, 3.966, 3.465, 1.479, 1.372, 0.449, 1.78, 2.542, 2.859, 3.027, 0.556, 1.037, 2.543, 3.195, 2.079, 1.475, 3.367, 0.498, 0.016, 1.477, 1.033, 1.342, 3.606, 0.473, 2.472, 1.429, 2.034, 1.318, 0.751, 1.07, 1.207, 3.712, 2.58, 1.455, 2.217, 1.44, 1.907, 1.151] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_105", + "sample document": { + "location identifier": "E6", + "sample identifier": "plate E6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.609, 3.555, 1.206, 1.4, 3.207, 2.988, 3.069, 1.678, 0.667, 2.689, 0.882, 0.018, 2.383, 1.089, 2.982, 1.15, 0.403, 1.621, 0.359, 2.991, 3.006, 3.943, 2.414, 0.461, 1.791, 1.789, 1.819, 0.843, 2.457, 1.087, 0.977, 0.638, 3.568, 2.216, 1.889, 0.461, 0.271, 3.632, 2.135, 0.617, 1.404, 0.794, 0.761, 3.344, 0.435, 0.732, 2.687, 0.118, 0.73, 1.429, 1.052] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_106", + "sample document": { + "location identifier": "E7", + "sample identifier": "plate E7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.596, 1.081, 2.916, 2.144, 2.665, 1.14, 0.744, 3.608, 1.418, 1.169, 2.225, 3.22, 3.579, 1.712, 0.243, 0.45, 0.166, 3.2, 2.52, 0.879, 0.77, 3.485, 3.741, 1.586, 2.211, 3.181, 3.07, 0.026, 1.059, 3.101, 1.701, 0.113, 1.027, 0.035, 0.38, 3.557, 0.652, 0.072, 3.224, 3.321, 3.527, 0.023, 0.716, 3.448, 3.179, 1.573, 1.181, 1.631, 0.192, 0.282, 2.52] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_107", + "sample document": { + "location identifier": "E8", + "sample identifier": "plate E8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.918, 2.209, 0.55, 0.281, 1.11, 1.339, 1.329, 3.932, 3.483, 2.069, 0.718, 2.549, 2.316, 3.467, 2.111, 2.193, 3.544, 1.331, 0.685, 3.797, 0.094, 3.975, 3.199, 1.351, 0.746, 2.769, 0.293, 2.407, 0.637, 2.0, 1.439, 3.834, 0.776, 0.581, 0.783, 1.904, 0.477, 3.754, 3.27, 2.218, 3.322, 0.139, 3.74, 1.251, 2.809, 1.474, 2.399, 3.98, 1.067, 3.38, 1.637] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_108", + "sample document": { + "location identifier": "E9", + "sample identifier": "plate E9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.299, 3.506, 0.484, 2.426, 0.942, 3.009, 3.198, 3.534, 2.341, 1.045, 2.922, 3.294, 1.483, 0.629, 0.883, 1.773, 1.735, 2.684, 0.207, 1.715, 3.789, 2.061, 2.467, 0.474, 3.955, 0.235, 1.948, 2.542, 3.272, 0.369, 0.312, 1.339, 1.257, 0.362, 1.139, 0.327, 0.291, 2.154, 3.841, 2.895, 1.278, 0.22, 0.928, 1.172, 0.399, 0.844, 2.257, 0.621, 1.925, 3.7, 0.664] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_109", + "sample document": { + "location identifier": "E10", + "sample identifier": "plate E10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.296, 0.859, 1.664, 1.847, 2.238, 1.038, 0.01, 2.47, 0.707, 1.061, 0.656, 0.261, 1.972, 0.733, 1.583, 2.037, 1.12, 3.49, 0.556, 1.481, 3.58, 2.842, 1.312, 0.437, 3.569, 1.133, 1.295, 0.075, 3.11, 1.977, 1.326, 0.617, 3.572, 3.705, 3.015, 0.48, 3.592, 2.515, 2.901, 3.289, 0.281, 3.684, 3.134, 1.833, 0.622, 3.958, 2.956, 0.439, 2.816, 2.807, 1.136] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_110", + "sample document": { + "location identifier": "E11", + "sample identifier": "plate E11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.131, 1.369, 2.218, 1.083, 2.453, 3.547, 1.227, 2.277, 1.104, 3.743, 3.934, 3.36, 2.729, 3.735, 0.038, 0.689, 2.266, 1.717, 1.102, 2.445, 2.604, 0.588, 1.266, 1.2, 3.896, 3.708, 3.478, 3.814, 3.61, 2.176, 0.856, 1.258, 0.303, 0.841, 0.194, 3.248, 1.353, 2.621, 0.561, 0.932, 2.364, 0.237, 1.796, 3.546, 0.346, 0.324, 0.404, 2.098, 0.583, 3.269, 0.689] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_111", + "sample document": { + "location identifier": "E12", + "sample identifier": "plate E12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.721, 1.713, 0.361, 2.531, 0.542, 0.102, 1.018, 1.186, 2.745, 0.069, 1.412, 2.667, 2.928, 2.886, 2.676, 3.056, 1.888, 3.54, 0.79, 3.336, 3.644, 1.155, 0.17, 0.08, 2.367, 2.792, 1.719, 0.853, 3.572, 3.303, 1.379, 3.231, 0.34, 1.486, 2.134, 3.544, 3.941, 2.309, 3.651, 3.145, 0.334, 1.435, 1.816, 0.863, 0.952, 1.57, 2.868, 0.659, 1.669, 1.267, 2.516] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_112", + "sample document": { + "location identifier": "E13", + "sample identifier": "plate E13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.558, 3.793, 3.933, 1.044, 1.566, 1.543, 0.281, 0.164, 1.75, 2.382, 0.165, 1.614, 3.441, 2.689, 2.181, 2.326, 1.441, 0.752, 3.132, 3.115, 3.578, 3.888, 1.644, 3.001, 2.209, 3.338, 3.306, 3.128, 0.796, 3.923, 1.059, 3.183, 2.305, 0.786, 2.821, 3.437, 0.407, 0.442, 0.568, 2.001, 3.66, 2.144, 1.901, 0.762, 0.169, 3.821, 2.374, 2.173, 2.77, 3.244, 1.427] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_113", + "sample document": { + "location identifier": "E14", + "sample identifier": "plate E14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.907, 2.537, 2.152, 2.938, 2.669, 2.149, 0.931, 2.835, 2.227, 2.236, 1.152, 3.368, 1.826, 1.322, 0.981, 3.308, 2.655, 3.868, 2.744, 1.919, 0.999, 0.183, 1.13, 3.455, 1.434, 1.987, 0.881, 2.832, 2.388, 0.964, 1.133, 0.357, 1.552, 2.496, 1.152, 0.645, 0.153, 1.848, 0.151, 1.287, 3.475, 1.607, 2.34, 3.764, 2.507, 2.775, 0.074, 3.439, 3.187, 0.512, 3.719] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_114", + "sample document": { + "location identifier": "E15", + "sample identifier": "plate E15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.305, 0.026, 1.325, 0.428, 3.723, 1.406, 2.697, 1.503, 0.682, 1.267, 2.099, 0.446, 1.263, 1.103, 0.794, 1.816, 3.33, 0.17, 0.335, 3.155, 0.806, 3.716, 1.456, 2.443, 3.392, 1.843, 1.366, 0.947, 2.658, 1.912, 1.441, 3.644, 1.876, 1.244, 2.827, 0.331, 0.226, 2.068, 1.428, 3.238, 1.456, 0.344, 3.469, 0.02, 1.375, 1.16, 1.077, 2.661, 1.712, 0.959, 0.744] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_115", + "sample document": { + "location identifier": "E16", + "sample identifier": "plate E16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.269, 2.852, 1.356, 2.912, 2.588, 2.569, 2.881, 1.036, 1.88, 0.04, 1.749, 2.844, 2.769, 3.825, 2.455, 2.57, 0.018, 2.275, 0.463, 1.589, 1.261, 2.742, 1.096, 1.699, 0.461, 0.247, 1.435, 1.068, 2.231, 0.766, 2.704, 3.235, 1.699, 1.167, 2.172, 0.792, 0.519, 2.332, 0.239, 1.761, 1.345, 1.032, 3.548, 3.198, 3.707, 1.499, 0.699, 0.194, 2.92, 2.59, 1.058] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_116", + "sample document": { + "location identifier": "E17", + "sample identifier": "plate E17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.386, 1.249, 3.369, 3.482, 0.526, 1.755, 3.656, 2.45, 2.341, 1.133, 1.813, 2.804, 1.114, 1.336, 2.513, 1.145, 1.601, 1.652, 1.663, 2.05, 1.686, 2.035, 2.701, 0.244, 0.229, 3.194, 1.898, 1.992, 2.961, 3.547, 1.241, 2.147, 3.641, 3.707, 2.318, 1.986, 2.329, 1.685, 1.646, 3.036, 0.863, 3.881, 1.897, 0.628, 3.531, 2.227, 2.433, 1.862, 1.193, 0.354, 3.098] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_117", + "sample document": { + "location identifier": "E18", + "sample identifier": "plate E18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.542, 1.257, 0.54, 3.371, 2.35, 2.548, 3.125, 3.253, 1.332, 3.857, 1.663, 3.489, 2.794, 3.892, 3.665, 3.163, 1.406, 3.017, 0.526, 2.816, 3.916, 0.006, 2.626, 1.186, 1.805, 0.138, 2.073, 0.712, 2.001, 0.76, 0.036, 0.799, 2.607, 0.449, 2.698, 0.89, 3.101, 0.335, 3.967, 3.438, 3.204, 2.431, 0.313, 3.179, 3.199, 0.391, 3.103, 0.735, 3.866, 3.064, 1.027] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_118", + "sample document": { + "location identifier": "E19", + "sample identifier": "plate E19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.844, 0.666, 1.537, 3.181, 2.535, 2.63, 3.353, 1.566, 2.212, 0.474, 2.412, 1.251, 0.571, 3.82, 0.864, 0.881, 2.344, 1.193, 2.775, 0.062, 1.07, 3.049, 1.088, 3.611, 1.484, 3.692, 3.447, 1.987, 1.413, 1.034, 1.337, 0.846, 2.936, 3.733, 1.192, 0.132, 1.069, 1.267, 0.163, 2.259, 3.747, 2.769, 1.755, 2.963, 0.791, 1.179, 3.741, 3.358, 2.334, 3.51, 0.758] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_119", + "sample document": { + "location identifier": "E20", + "sample identifier": "plate E20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.541, 1.091, 3.002, 3.956, 3.794, 3.578, 1.925, 1.696, 2.842, 3.183, 1.365, 0.152, 1.177, 3.137, 1.566, 2.315, 0.838, 2.628, 0.732, 3.811, 1.077, 1.03, 0.515, 0.314, 2.301, 1.294, 2.125, 2.82, 0.304, 3.951, 0.088, 3.653, 1.903, 0.275, 1.796, 3.755, 3.934, 3.777, 1.397, 0.554, 3.143, 3.57, 1.32, 3.076, 2.381, 2.617, 0.578, 3.826, 3.225, 2.864, 2.903] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_120", + "sample document": { + "location identifier": "E21", + "sample identifier": "plate E21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.73, 1.601, 3.698, 3.681, 2.51, 0.575, 2.688, 1.655, 2.5, 1.453, 3.105, 1.392, 2.891, 3.094, 1.712, 2.248, 0.902, 1.34, 1.81, 2.381, 1.061, 1.23, 0.178, 0.668, 1.506, 3.709, 1.439, 1.932, 3.683, 0.715, 2.298, 3.594, 1.439, 1.048, 3.358, 2.051, 2.205, 0.593, 3.285, 3.179, 1.246, 2.121, 2.897, 3.1, 0.037, 2.178, 2.429, 3.981, 0.669, 0.368, 3.676] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_121", + "sample document": { + "location identifier": "E22", + "sample identifier": "plate E22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.485, 1.415, 0.483, 1.841, 3.499, 1.423, 3.029, 2.175, 2.8, 3.136, 0.755, 1.971, 1.784, 3.154, 3.511, 3.952, 1.843, 3.736, 3.661, 0.043, 0.308, 2.054, 2.631, 1.135, 2.939, 2.332, 1.077, 0.63, 3.327, 1.28, 1.457, 1.263, 3.315, 1.039, 3.813, 2.179, 0.956, 3.206, 3.858, 0.628, 3.175, 2.417, 0.484, 0.043, 0.49, 0.15, 1.113, 3.946, 0.526, 2.225, 0.585] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_122", + "sample document": { + "location identifier": "E23", + "sample identifier": "plate E23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.245, 1.008, 0.324, 3.367, 0.43, 2.783, 3.348, 2.902, 1.167, 0.345, 2.399, 2.847, 1.52, 1.678, 3.492, 2.655, 0.744, 3.341, 1.332, 2.996, 2.637, 3.877, 3.032, 0.868, 1.89, 1.57, 2.588, 0.644, 2.789, 1.219, 1.131, 0.104, 1.101, 0.694, 1.212, 0.254, 2.99, 1.672, 3.382, 3.395, 1.607, 0.304, 2.691, 0.283, 0.775, 3.57, 2.964, 2.364, 0.997, 1.494, 0.369] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_123", + "sample document": { + "location identifier": "E24", + "sample identifier": "plate E24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.605, 3.193, 3.229, 1.948, 0.367, 1.975, 3.456, 1.477, 2.86, 0.195, 2.703, 0.113, 3.948, 3.214, 2.295, 1.745, 0.825, 0.465, 3.237, 3.665, 3.072, 3.958, 1.936, 1.388, 2.333, 1.186, 2.749, 0.092, 2.32, 2.605, 0.223, 3.646, 1.294, 0.85, 0.525, 0.91, 1.872, 2.745, 0.845, 2.278, 3.533, 0.195, 0.521, 3.199, 2.903, 0.191, 2.742, 1.069, 2.48, 1.824, 2.138] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_125", + "sample document": { + "location identifier": "F1", + "sample identifier": "plate F1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.898, 1.759, 1.829, 1.296, 0.646, 1.256, 1.84, 3.615, 3.18, 3.226, 3.364, 3.156, 0.254, 3.972, 3.057, 2.818, 3.098, 2.688, 1.385, 3.873, 2.079, 3.62, 0.959, 0.131, 2.877, 3.436, 2.737, 2.485, 2.142, 2.443, 1.68, 1.612, 0.495, 0.467, 2.324, 1.887, 3.464, 3.553, 3.879, 3.653, 0.031, 3.13, 1.664, 3.052, 0.169, 1.038, 0.267, 3.227, 3.846, 1.372, 3.644] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_126", + "sample document": { + "location identifier": "F2", + "sample identifier": "plate F2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.38, 1.094, 1.951, 0.058, 2.278, 0.8, 1.698, 2.419, 1.209, 2.519, 3.355, 1.473, 0.736, 1.546, 1.752, 2.661, 3.787, 1.647, 1.17, 3.353, 3.544, 2.809, 1.731, 3.842, 2.949, 1.955, 1.906, 3.961, 1.838, 3.169, 3.509, 2.638, 0.769, 2.798, 3.299, 0.517, 2.544, 0.408, 0.045, 1.086, 1.766, 1.133, 2.669, 1.133, 0.675, 1.656, 0.928, 1.506, 2.417, 2.377, 0.48] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_127", + "sample document": { + "location identifier": "F3", + "sample identifier": "plate F3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.579, 2.676, 2.018, 0.1, 3.571, 3.363, 2.109, 1.108, 0.323, 2.894, 1.736, 0.58, 2.04, 3.01, 0.717, 0.704, 1.937, 2.246, 1.234, 0.116, 3.378, 1.601, 0.083, 1.586, 2.411, 0.14, 0.597, 3.166, 1.292, 1.027, 0.4, 1.544, 3.461, 2.689, 1.93, 3.962, 2.75, 2.698, 3.727, 1.154, 0.435, 3.299, 3.722, 2.191, 0.03, 0.552, 0.628, 2.123, 3.958, 0.952, 2.99] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_128", + "sample document": { + "location identifier": "F4", + "sample identifier": "plate F4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.259, 1.182, 2.26, 1.101, 3.977, 2.592, 0.432, 1.689, 3.431, 2.765, 2.942, 3.816, 3.295, 2.493, 0.192, 1.119, 3.351, 1.079, 0.754, 1.953, 3.238, 2.519, 0.08, 3.68, 0.078, 1.879, 1.891, 1.556, 1.858, 3.511, 2.473, 3.207, 0.34, 2.036, 1.141, 0.361, 1.2, 1.587, 1.952, 1.369, 2.318, 1.009, 0.296, 2.388, 1.492, 3.483, 0.426, 3.698, 3.837, 3.433, 1.277] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_129", + "sample document": { + "location identifier": "F5", + "sample identifier": "plate F5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.043, 3.203, 2.999, 3.751, 0.74, 1.102, 2.579, 1.023, 2.098, 0.7, 2.875, 3.83, 3.919, 0.291, 3.735, 3.475, 1.259, 1.352, 3.831, 3.918, 1.763, 3.127, 3.385, 3.634, 2.229, 2.223, 1.692, 2.187, 0.594, 1.452, 2.193, 1.718, 2.424, 2.234, 1.43, 0.003, 1.341, 2.284, 0.401, 3.259, 2.621, 0.563, 3.853, 0.668, 3.442, 1.178, 0.376, 2.097, 1.757, 0.007, 3.167] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_130", + "sample document": { + "location identifier": "F6", + "sample identifier": "plate F6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.345, 0.006, 3.515, 3.513, 1.916, 3.818, 3.364, 1.522, 2.516, 3.409, 0.392, 0.428, 0.646, 2.506, 1.156, 1.405, 1.685, 2.861, 3.731, 2.134, 2.974, 0.951, 0.571, 1.297, 1.199, 3.273, 2.716, 0.191, 1.05, 1.847, 3.594, 0.429, 0.586, 2.284, 3.848, 1.712, 2.909, 2.72, 3.513, 0.185, 1.976, 0.762, 1.884, 3.849, 2.228, 0.135, 3.207, 2.162, 2.286, 3.772, 2.69] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_131", + "sample document": { + "location identifier": "F7", + "sample identifier": "plate F7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.235, 2.026, 1.873, 0.192, 1.393, 3.434, 2.218, 2.313, 2.642, 1.102, 3.172, 0.471, 0.669, 3.814, 3.962, 3.842, 2.362, 2.658, 3.444, 2.496, 2.965, 3.347, 3.546, 0.157, 2.211, 3.067, 0.722, 3.068, 1.064, 0.066, 0.554, 1.905, 1.277, 3.156, 0.359, 2.403, 2.713, 2.091, 2.455, 2.277, 0.691, 0.406, 0.871, 3.082, 2.804, 0.29, 1.214, 0.034, 2.266, 0.292, 0.845] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_132", + "sample document": { + "location identifier": "F8", + "sample identifier": "plate F8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.504, 2.842, 1.276, 3.725, 3.888, 2.48, 1.715, 1.981, 2.326, 2.711, 3.149, 1.249, 2.575, 0.548, 1.266, 3.194, 1.512, 3.455, 1.559, 1.128, 0.27, 0.202, 1.166, 1.805, 2.558, 2.475, 0.463, 1.353, 1.921, 1.852, 0.688, 0.801, 0.771, 3.221, 1.049, 3.063, 0.001, 3.431, 0.47, 3.922, 0.998, 0.11, 0.129, 3.565, 1.541, 3.157, 2.295, 2.534, 1.537, 1.096, 3.701] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_133", + "sample document": { + "location identifier": "F9", + "sample identifier": "plate F9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.578, 0.707, 3.163, 0.574, 3.301, 1.675, 3.471, 1.166, 1.412, 2.016, 0.361, 0.059, 0.473, 2.023, 2.347, 0.477, 3.354, 3.498, 2.203, 3.193, 2.081, 2.985, 1.636, 0.13, 0.16, 0.073, 1.6, 0.263, 3.401, 0.18, 1.929, 3.815, 0.824, 2.151, 0.109, 0.094, 1.608, 2.647, 1.748, 1.387, 0.529, 2.265, 3.058, 1.906, 0.636, 0.05, 3.656, 1.542, 3.193, 2.679, 2.941] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_134", + "sample document": { + "location identifier": "F10", + "sample identifier": "plate F10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.035, 3.334, 1.903, 1.62, 1.593, 3.07, 3.032, 0.414, 3.227, 0.075, 3.207, 1.764, 1.232, 0.087, 0.546, 3.235, 2.321, 1.914, 2.253, 2.869, 0.707, 1.749, 0.815, 2.663, 3.816, 3.927, 3.73, 3.494, 0.109, 0.417, 0.058, 1.069, 0.721, 1.238, 2.894, 0.48, 2.92, 0.531, 2.516, 1.023, 2.575, 2.232, 2.521, 1.312, 1.322, 0.5, 1.825, 1.819, 0.089, 0.814, 1.334] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_135", + "sample document": { + "location identifier": "F11", + "sample identifier": "plate F11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.627, 0.94, 3.81, 2.234, 1.285, 2.519, 3.24, 1.804, 1.666, 3.34, 3.538, 0.304, 2.809, 0.017, 2.137, 1.042, 3.993, 1.192, 0.065, 0.315, 1.79, 3.397, 1.229, 0.294, 2.474, 3.228, 3.503, 1.341, 3.315, 2.101, 1.911, 3.405, 3.294, 3.083, 0.43, 0.129, 0.911, 3.003, 1.608, 1.961, 3.679, 2.726, 0.85, 1.683, 3.036, 1.927, 3.711, 1.294, 3.184, 3.457, 1.831] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_136", + "sample document": { + "location identifier": "F12", + "sample identifier": "plate F12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.626, 0.024, 0.499, 3.543, 0.229, 3.71, 3.515, 3.76, 2.057, 3.015, 1.899, 2.488, 3.564, 1.429, 0.132, 1.009, 3.726, 3.587, 2.008, 0.131, 0.99, 3.584, 2.103, 0.635, 3.063, 2.547, 3.546, 1.257, 0.546, 3.516, 2.208, 2.156, 3.858, 0.269, 1.285, 3.381, 2.795, 3.54, 0.2, 0.418, 1.395, 3.243, 3.55, 2.946, 1.78, 0.238, 1.285, 0.254, 2.904, 0.918, 3.985] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_137", + "sample document": { + "location identifier": "F13", + "sample identifier": "plate F13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.707, 1.176, 3.326, 0.841, 1.041, 1.92, 3.864, 0.479, 1.682, 0.164, 2.258, 3.213, 2.541, 0.806, 3.742, 2.63, 3.295, 0.143, 0.751, 2.214, 0.185, 3.386, 1.589, 2.735, 1.746, 0.034, 3.157, 2.854, 2.825, 1.262, 3.292, 2.353, 3.628, 3.53, 0.501, 0.98, 0.532, 3.427, 0.244, 1.46, 2.931, 3.06, 2.518, 0.253, 3.137, 0.029, 1.008, 2.139, 2.037, 1.607, 1.989] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_138", + "sample document": { + "location identifier": "F14", + "sample identifier": "plate F14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.11, 2.152, 2.703, 3.799, 2.32, 3.586, 0.59, 3.095, 1.006, 2.762, 1.009, 1.653, 0.419, 0.872, 3.905, 3.585, 3.011, 0.305, 2.762, 2.098, 3.867, 3.899, 3.29, 3.283, 1.125, 0.868, 1.335, 3.598, 1.716, 3.026, 1.017, 0.816, 1.217, 3.272, 3.182, 0.2, 0.924, 3.73, 2.18, 1.393, 3.941, 0.332, 3.237, 2.698, 1.921, 1.406, 2.098, 3.381, 3.232, 0.444, 1.997] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_139", + "sample document": { + "location identifier": "F15", + "sample identifier": "plate F15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.834, 3.275, 3.509, 2.122, 0.21, 2.861, 3.42, 2.674, 1.452, 2.25, 0.992, 1.378, 1.98, 1.745, 0.192, 0.436, 1.146, 1.69, 3.704, 2.661, 3.28, 2.124, 1.368, 2.156, 3.535, 0.662, 0.592, 1.362, 3.718, 2.769, 1.954, 0.366, 1.272, 1.029, 3.182, 1.541, 1.708, 1.15, 2.972, 1.338, 1.503, 1.056, 0.728, 3.143, 2.949, 2.953, 1.257, 0.952, 1.728, 0.97, 0.952] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_140", + "sample document": { + "location identifier": "F16", + "sample identifier": "plate F16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.69, 3.527, 1.782, 2.716, 3.709, 1.907, 1.352, 2.586, 3.547, 2.269, 2.058, 2.955, 2.682, 0.295, 0.625, 0.106, 0.951, 2.562, 2.651, 2.727, 3.995, 2.718, 2.365, 1.157, 2.224, 1.396, 2.224, 3.207, 0.581, 3.405, 3.639, 3.633, 2.748, 1.817, 0.263, 0.838, 3.49, 2.313, 3.472, 3.633, 0.355, 2.563, 3.424, 3.069, 3.444, 2.1, 2.046, 2.847, 2.323, 2.847, 0.305] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_141", + "sample document": { + "location identifier": "F17", + "sample identifier": "plate F17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.39, 3.076, 2.242, 0.957, 2.972, 1.162, 0.624, 0.491, 2.313, 3.682, 2.145, 2.005, 0.142, 2.629, 2.424, 0.207, 0.865, 0.032, 3.787, 0.615, 2.638, 3.089, 3.018, 2.372, 1.431, 3.294, 3.296, 1.712, 0.124, 3.35, 3.377, 0.883, 1.734, 3.099, 1.249, 0.557, 0.505, 0.859, 1.291, 3.675, 2.865, 1.822, 1.159, 3.95, 2.21, 0.558, 3.281, 0.439, 1.02, 1.893, 1.18] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_142", + "sample document": { + "location identifier": "F18", + "sample identifier": "plate F18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.815, 2.535, 2.231, 1.667, 3.3, 0.058, 3.87, 3.525, 3.678, 1.866, 2.911, 0.366, 2.963, 0.305, 1.261, 0.27, 1.042, 1.38, 1.867, 3.701, 0.005, 2.74, 0.112, 1.75, 0.816, 1.93, 3.067, 0.162, 0.872, 0.012, 2.856, 0.692, 2.231, 2.169, 0.562, 2.347, 3.503, 1.431, 1.948, 0.499, 0.635, 1.334, 1.612, 1.809, 3.954, 1.455, 2.195, 3.645, 0.948, 0.288, 2.239] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_143", + "sample document": { + "location identifier": "F19", + "sample identifier": "plate F19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.059, 3.152, 2.191, 1.175, 0.074, 2.423, 0.481, 0.851, 1.37, 0.99, 3.708, 2.652, 3.666, 3.01, 2.218, 2.134, 0.794, 3.743, 2.914, 0.767, 3.61, 3.431, 1.368, 3.066, 2.67, 1.128, 2.302, 1.796, 3.36, 3.735, 3.421, 3.214, 0.584, 1.773, 3.796, 1.54, 0.039, 0.994, 0.487, 3.924, 3.021, 0.58, 0.578, 3.508, 0.927, 2.682, 1.946, 2.799, 1.735, 3.32, 1.401] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_144", + "sample document": { + "location identifier": "F20", + "sample identifier": "plate F20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.902, 2.033, 3.52, 2.628, 3.628, 1.784, 3.125, 2.504, 2.945, 0.121, 2.684, 1.49, 1.635, 1.568, 0.493, 2.067, 1.893, 3.213, 0.678, 2.094, 3.799, 3.255, 2.99, 1.745, 3.03, 2.852, 1.859, 2.139, 3.988, 3.182, 3.503, 0.06, 0.039, 2.333, 3.519, 1.18, 1.064, 3.144, 0.167, 3.756, 0.914, 2.49, 1.541, 3.803, 0.336, 3.089, 2.943, 1.939, 0.433, 0.614, 0.052] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_145", + "sample document": { + "location identifier": "F21", + "sample identifier": "plate F21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.585, 1.057, 1.225, 1.601, 0.647, 3.043, 1.774, 3.597, 0.776, 3.924, 0.986, 2.515, 3.763, 0.617, 2.624, 1.45, 3.301, 2.049, 3.313, 1.003, 2.748, 3.046, 0.921, 1.18, 1.309, 1.713, 3.187, 1.408, 3.94, 3.908, 3.92, 1.705, 3.374, 3.129, 3.918, 3.003, 2.814, 0.731, 2.871, 2.136, 3.289, 3.547, 3.391, 3.832, 3.928, 3.975, 1.777, 3.185, 1.712, 1.638, 3.642] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_146", + "sample document": { + "location identifier": "F22", + "sample identifier": "plate F22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.889, 1.119, 3.61, 1.304, 0.539, 0.135, 0.045, 0.292, 2.933, 3.856, 0.366, 3.656, 0.868, 0.003, 3.28, 3.14, 0.634, 0.698, 3.62, 2.636, 2.569, 3.177, 1.177, 1.714, 3.201, 3.654, 1.089, 1.251, 1.333, 3.935, 0.001, 3.695, 2.302, 0.265, 0.03, 0.586, 3.763, 1.824, 3.379, 2.868, 2.768, 0.439, 3.937, 2.279, 2.923, 3.89, 2.522, 3.828, 0.648, 0.834, 1.143] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_147", + "sample document": { + "location identifier": "F23", + "sample identifier": "plate F23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.486, 2.092, 3.002, 1.072, 0.711, 3.942, 1.896, 2.103, 0.884, 3.045, 2.793, 2.958, 2.998, 3.855, 0.67, 1.354, 0.602, 3.973, 2.693, 3.376, 2.81, 1.319, 0.752, 3.867, 2.13, 3.24, 2.897, 2.791, 3.311, 1.132, 1.261, 0.602, 0.499, 2.792, 1.514, 1.603, 3.299, 3.192, 3.318, 0.644, 1.867, 3.721, 2.495, 3.822, 3.974, 1.48, 0.939, 2.424, 2.252, 2.535, 1.92] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_148", + "sample document": { + "location identifier": "F24", + "sample identifier": "plate F24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.855, 1.954, 1.457, 2.332, 1.167, 1.34, 3.134, 2.942, 1.471, 1.044, 3.104, 2.792, 3.752, 1.783, 2.19, 2.459, 0.206, 2.34, 3.066, 2.055, 1.409, 0.654, 2.049, 1.509, 3.088, 2.824, 0.929, 3.892, 0.65, 2.3, 0.472, 0.538, 0.775, 3.211, 1.406, 2.648, 3.041, 0.459, 0.347, 0.263, 0.165, 0.25, 1.847, 3.599, 2.762, 0.929, 2.742, 2.039, 1.784, 3.02, 0.733] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_150", + "sample document": { + "location identifier": "G1", + "sample identifier": "plate G1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.083, 3.186, 0.48, 0.511, 3.2, 3.905, 3.948, 3.244, 2.342, 0.41, 3.241, 2.292, 3.171, 0.571, 2.566, 2.016, 0.54, 0.377, 3.542, 3.417, 3.746, 1.993, 2.802, 1.889, 1.159, 2.807, 2.45, 2.746, 2.159, 0.081, 2.89, 2.108, 1.629, 1.567, 0.389, 1.352, 0.295, 2.7, 2.205, 2.742, 3.093, 1.215, 2.005, 3.852, 0.923, 1.958, 2.675, 3.027, 0.196, 2.912, 2.202] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_151", + "sample document": { + "location identifier": "G2", + "sample identifier": "plate G2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.661, 2.241, 3.603, 0.986, 2.09, 0.383, 2.59, 3.351, 0.393, 1.455, 1.201, 1.084, 2.26, 1.52, 1.133, 0.662, 1.603, 0.182, 1.214, 1.72, 1.84, 2.172, 0.8, 0.323, 2.531, 3.988, 2.95, 0.965, 3.2, 0.131, 3.423, 2.55, 3.246, 1.879, 1.228, 3.867, 2.026, 0.58, 2.299, 0.968, 1.704, 3.348, 1.812, 1.287, 1.892, 0.13, 3.744, 2.332, 3.79, 1.295, 1.072] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_152", + "sample document": { + "location identifier": "G3", + "sample identifier": "plate G3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.844, 2.982, 1.192, 0.362, 3.489, 1.441, 3.279, 2.455, 2.102, 1.433, 1.624, 0.151, 0.262, 2.031, 2.65, 1.837, 0.381, 0.291, 1.265, 2.635, 1.022, 1.883, 0.245, 0.016, 2.491, 0.359, 3.512, 2.431, 2.4, 0.243, 0.618, 1.175, 1.905, 3.059, 0.578, 3.568, 2.054, 1.517, 1.739, 2.426, 2.747, 2.125, 0.197, 3.534, 0.08, 3.197, 1.549, 3.255, 3.241, 2.292, 3.363] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_153", + "sample document": { + "location identifier": "G4", + "sample identifier": "plate G4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.04, 2.525, 2.659, 0.049, 0.961, 2.736, 1.175, 1.87, 3.129, 1.928, 0.848, 0.054, 1.858, 0.815, 0.449, 2.245, 1.202, 1.453, 3.082, 3.783, 2.863, 2.552, 2.838, 3.888, 2.896, 1.686, 0.71, 3.936, 3.294, 2.809, 0.256, 3.189, 0.107, 0.88, 2.577, 2.649, 3.245, 3.009, 3.616, 0.832, 0.878, 3.647, 2.609, 0.497, 1.899, 2.071, 2.338, 2.719, 3.63, 0.951, 0.347] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_154", + "sample document": { + "location identifier": "G5", + "sample identifier": "plate G5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.802, 0.159, 2.509, 0.5, 3.487, 3.686, 2.771, 1.152, 3.275, 2.025, 1.239, 2.576, 0.319, 1.672, 1.658, 3.946, 0.978, 2.237, 1.799, 3.0, 2.193, 1.836, 2.25, 2.904, 3.216, 3.942, 2.34, 1.989, 0.825, 3.347, 1.991, 0.305, 2.342, 2.462, 2.454, 3.03, 1.598, 0.38, 3.09, 2.963, 0.474, 1.857, 0.341, 2.806, 3.638, 1.071, 2.29, 2.825, 0.24, 2.124, 1.36] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_155", + "sample document": { + "location identifier": "G6", + "sample identifier": "plate G6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.481, 1.83, 1.95, 2.153, 3.965, 1.908, 3.604, 1.283, 3.544, 1.345, 0.781, 0.327, 3.927, 0.033, 0.934, 0.233, 1.856, 3.217, 2.628, 2.348, 0.598, 3.147, 2.835, 2.526, 0.336, 1.494, 3.443, 3.265, 2.145, 1.652, 3.515, 1.748, 2.7, 1.987, 1.509, 2.474, 0.391, 0.309, 2.488, 1.121, 1.993, 3.096, 3.545, 1.618, 3.692, 1.529, 0.414, 2.773, 2.704, 0.837, 0.433] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_156", + "sample document": { + "location identifier": "G7", + "sample identifier": "plate G7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.608, 1.612, 3.776, 0.762, 1.334, 2.994, 3.424, 1.817, 2.47, 2.465, 0.338, 3.138, 1.892, 1.83, 3.032, 1.626, 1.939, 2.523, 2.459, 3.841, 1.547, 0.729, 1.506, 0.355, 1.502, 3.601, 1.217, 2.833, 2.806, 1.08, 0.67, 0.561, 1.307, 1.218, 3.906, 0.136, 2.924, 1.225, 0.175, 3.48, 0.967, 2.491, 0.017, 2.656, 1.654, 3.957, 1.653, 3.787, 0.659, 3.902, 2.474] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_157", + "sample document": { + "location identifier": "G8", + "sample identifier": "plate G8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.249, 0.245, 0.996, 2.886, 2.879, 0.106, 3.421, 3.259, 1.733, 1.777, 0.59, 3.011, 1.39, 1.794, 3.777, 1.831, 0.673, 1.923, 2.896, 2.702, 0.714, 2.348, 2.979, 2.874, 3.055, 0.711, 2.85, 2.7, 1.544, 1.947, 1.429, 2.174, 2.903, 2.605, 0.421, 0.316, 0.311, 2.332, 1.027, 0.03, 3.503, 1.965, 2.441, 1.703, 0.376, 3.48, 2.626, 0.861, 1.876, 2.125, 0.979] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_158", + "sample document": { + "location identifier": "G9", + "sample identifier": "plate G9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.864, 1.763, 1.2, 1.76, 1.9, 1.265, 2.121, 3.83, 2.167, 1.255, 0.72, 1.715, 3.785, 0.347, 2.416, 0.107, 2.785, 1.373, 3.461, 1.52, 2.341, 0.895, 2.866, 3.199, 2.749, 3.907, 1.276, 2.497, 3.575, 2.084, 1.989, 0.823, 3.418, 0.967, 3.565, 0.41, 1.702, 0.845, 2.521, 3.05, 2.189, 2.501, 2.859, 2.774, 2.782, 0.25, 2.655, 1.355, 1.96, 3.373, 3.841] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_159", + "sample document": { + "location identifier": "G10", + "sample identifier": "plate G10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.487, 2.415, 0.605, 2.638, 0.968, 2.897, 2.001, 3.011, 1.992, 3.989, 3.624, 0.255, 0.083, 3.266, 3.896, 2.296, 2.818, 0.781, 2.005, 2.404, 1.94, 2.852, 0.41, 3.33, 3.839, 2.035, 0.092, 0.416, 2.498, 1.251, 3.92, 0.537, 0.201, 2.243, 2.501, 2.408, 2.812, 2.329, 2.597, 1.513, 3.701, 1.834, 0.528, 3.061, 2.565, 2.246, 2.776, 3.507, 2.886, 1.953, 3.837] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_160", + "sample document": { + "location identifier": "G11", + "sample identifier": "plate G11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.574, 3.954, 0.968, 1.9, 0.635, 2.004, 1.275, 2.798, 2.932, 2.804, 1.585, 0.512, 0.741, 0.068, 3.086, 0.053, 1.84, 0.765, 1.488, 3.483, 0.488, 2.184, 0.492, 2.703, 0.106, 2.324, 1.349, 0.764, 1.593, 3.259, 0.584, 1.529, 0.545, 1.413, 3.345, 0.582, 3.233, 0.342, 1.865, 0.403, 1.537, 3.53, 3.664, 2.708, 2.115, 1.321, 3.786, 2.992, 3.478, 2.192, 0.936] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_161", + "sample document": { + "location identifier": "G12", + "sample identifier": "plate G12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.741, 1.397, 2.469, 3.348, 2.39, 3.462, 2.265, 1.794, 2.311, 0.655, 0.51, 1.205, 3.673, 2.22, 0.055, 3.967, 3.327, 0.723, 2.503, 0.82, 1.497, 2.899, 1.085, 1.946, 0.958, 2.519, 1.783, 0.587, 2.784, 2.537, 2.357, 1.286, 3.4, 2.323, 1.842, 0.132, 2.075, 2.064, 0.955, 1.12, 0.967, 2.548, 3.554, 3.747, 1.026, 2.324, 3.991, 0.488, 2.06, 1.354, 0.458] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_162", + "sample document": { + "location identifier": "G13", + "sample identifier": "plate G13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.269, 0.974, 1.372, 3.438, 3.842, 0.312, 0.523, 2.389, 3.87, 1.678, 1.678, 3.009, 3.774, 2.298, 3.224, 1.804, 1.349, 0.377, 3.923, 1.891, 1.262, 3.767, 1.383, 3.853, 2.949, 3.344, 1.337, 0.919, 2.634, 2.528, 1.295, 2.526, 1.429, 2.078, 0.088, 0.311, 2.028, 2.885, 2.0, 3.819, 1.551, 3.674, 1.085, 3.441, 3.288, 3.538, 3.78, 1.449, 1.802, 0.519, 2.641] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_163", + "sample document": { + "location identifier": "G14", + "sample identifier": "plate G14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.11, 2.136, 3.462, 3.196, 2.501, 3.591, 1.518, 0.488, 0.497, 2.974, 3.603, 3.755, 1.341, 0.383, 3.151, 1.579, 1.695, 2.209, 2.913, 3.776, 2.464, 2.376, 0.103, 0.34, 1.588, 2.682, 1.941, 0.564, 3.411, 3.564, 3.887, 3.117, 2.114, 3.886, 1.184, 0.39, 1.967, 2.882, 1.587, 0.719, 0.509, 2.396, 1.502, 0.845, 1.947, 3.919, 3.743, 3.058, 0.136, 1.958, 2.084] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_164", + "sample document": { + "location identifier": "G15", + "sample identifier": "plate G15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.239, 2.888, 0.743, 0.177, 1.733, 2.032, 3.122, 1.608, 3.818, 1.65, 0.954, 1.077, 0.932, 3.086, 0.486, 1.641, 1.455, 3.199, 2.761, 3.612, 2.813, 0.622, 2.193, 3.266, 0.067, 0.873, 3.258, 2.392, 1.668, 2.939, 2.882, 0.427, 1.452, 1.48, 0.648, 0.228, 1.371, 3.709, 3.45, 2.357, 2.844, 1.274, 1.768, 3.069, 3.555, 1.319, 0.57, 1.758, 1.461, 2.277, 2.287] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_165", + "sample document": { + "location identifier": "G16", + "sample identifier": "plate G16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.859, 1.375, 2.346, 3.27, 2.617, 0.695, 1.476, 0.109, 0.859, 2.773, 0.73, 3.939, 0.879, 2.767, 0.526, 3.625, 3.452, 2.438, 0.257, 0.27, 1.745, 3.748, 0.403, 0.768, 1.539, 2.854, 3.123, 3.711, 2.748, 0.303, 1.5, 0.93, 3.391, 0.651, 3.023, 3.052, 3.106, 2.209, 2.03, 3.533, 3.894, 3.599, 2.59, 3.583, 2.113, 1.335, 0.889, 0.302, 3.028, 1.694, 1.117] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_166", + "sample document": { + "location identifier": "G17", + "sample identifier": "plate G17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.319, 1.204, 2.007, 0.541, 0.11, 0.971, 1.577, 1.731, 3.762, 1.571, 1.765, 1.36, 0.556, 1.273, 3.799, 0.547, 0.227, 3.743, 1.474, 0.518, 1.243, 0.407, 0.723, 0.375, 2.146, 1.158, 0.819, 2.654, 0.204, 1.965, 2.821, 0.682, 1.054, 3.186, 2.18, 3.726, 1.383, 0.109, 2.912, 2.08, 1.528, 0.478, 2.267, 1.962, 2.129, 2.239, 2.034, 2.309, 2.313, 0.787, 0.661] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_167", + "sample document": { + "location identifier": "G18", + "sample identifier": "plate G18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.558, 1.554, 1.175, 3.873, 2.912, 0.48, 1.631, 2.395, 2.952, 0.152, 2.923, 1.526, 1.797, 2.75, 1.082, 0.305, 1.369, 3.093, 0.072, 3.164, 0.117, 0.831, 3.393, 2.99, 0.765, 2.139, 2.761, 2.246, 3.906, 3.123, 2.509, 0.34, 3.417, 1.303, 2.262, 3.128, 3.879, 3.313, 3.268, 3.246, 3.751, 1.713, 3.959, 1.928, 2.604, 2.951, 0.47, 3.212, 1.046, 1.933, 0.665] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_168", + "sample document": { + "location identifier": "G19", + "sample identifier": "plate G19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.216, 2.241, 1.622, 0.544, 3.727, 2.16, 2.184, 3.108, 0.772, 1.719, 3.384, 2.488, 3.828, 1.642, 2.582, 2.108, 0.494, 0.487, 1.954, 0.425, 2.055, 3.825, 0.826, 3.412, 2.403, 0.871, 1.465, 0.385, 1.813, 1.669, 3.548, 1.199, 1.973, 2.458, 3.293, 2.099, 1.794, 0.759, 2.535, 0.967, 1.695, 0.205, 2.495, 1.526, 0.367, 3.225, 0.131, 0.285, 0.022, 0.842, 3.975] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_169", + "sample document": { + "location identifier": "G20", + "sample identifier": "plate G20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.724, 3.092, 1.507, 2.609, 3.39, 1.414, 2.21, 2.14, 2.855, 0.695, 1.798, 1.294, 3.102, 2.17, 2.185, 0.515, 1.37, 2.348, 0.483, 0.314, 3.735, 1.952, 0.986, 2.73, 1.85, 1.329, 3.299, 3.045, 3.178, 0.74, 1.179, 0.363, 0.97, 1.694, 0.823, 2.107, 0.465, 3.848, 3.902, 0.685, 3.584, 2.618, 3.68, 0.272, 3.896, 2.911, 3.393, 3.355, 2.182, 2.709, 2.761] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_171", + "sample document": { + "location identifier": "G22", + "sample identifier": "plate G22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.008, 2.104, 2.659, 1.239, 3.49, 3.741, 3.799, 3.123, 2.5, 1.391, 3.943, 1.82, 0.124, 2.17, 2.301, 2.492, 0.135, 0.272, 0.611, 3.881, 3.954, 1.296, 0.076, 2.361, 2.432, 0.604, 1.226, 0.31, 1.46, 0.706, 3.957, 0.372, 0.351, 3.95, 1.935, 2.759, 1.809, 0.739, 3.752, 1.082, 0.643, 2.33, 1.549, 2.609, 1.745, 1.268, 1.716, 0.4, 2.117, 1.164, 1.43] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_172", + "sample document": { + "location identifier": "G23", + "sample identifier": "plate G23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.484, 1.85, 2.705, 2.03, 0.711, 2.027, 0.298, 2.807, 2.886, 2.514, 3.488, 1.662, 1.794, 1.433, 3.571, 1.469, 0.173, 0.234, 3.542, 0.682, 3.395, 0.52, 3.528, 3.238, 1.623, 3.746, 1.467, 0.615, 1.163, 2.887, 0.825, 2.192, 0.296, 3.276, 3.473, 2.521, 1.645, 1.919, 1.224, 0.732, 1.511, 1.932, 0.866, 2.567, 1.154, 0.667, 3.755, 1.175, 2.174, 3.799, 1.542] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_173", + "sample document": { + "location identifier": "G24", + "sample identifier": "plate G24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.166, 2.575, 0.481, 2.035, 3.963, 2.321, 3.467, 0.407, 0.964, 0.559, 3.682, 1.643, 3.998, 1.689, 1.296, 1.366, 2.518, 1.96, 1.049, 3.823, 2.254, 3.01, 2.81, 3.17, 1.463, 3.653, 0.961, 2.084, 0.956, 3.991, 0.292, 2.441, 1.364, 1.344, 0.659, 3.616, 3.814, 1.24, 3.509, 0.199, 2.178, 1.512, 0.259, 0.172, 1.829, 0.288, 0.867, 0.878, 3.857, 3.3, 1.236] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_175", + "sample document": { + "location identifier": "H1", + "sample identifier": "plate H1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.215, 1.124, 3.975, 3.288, 1.156, 3.765, 1.31, 0.571, 0.31, 1.36, 1.383, 3.451, 0.972, 0.267, 1.24, 0.279, 2.653, 1.029, 1.68, 1.551, 1.277, 2.45, 0.849, 1.645, 0.741, 2.751, 2.637, 1.34, 1.175, 2.785, 0.082, 2.227, 1.655, 2.754, 1.076, 1.317, 1.388, 2.055, 3.503, 3.851, 2.504, 0.668, 3.199, 2.838, 0.795, 2.061, 3.286, 3.905, 0.589, 0.008, 2.214] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_176", + "sample document": { + "location identifier": "H2", + "sample identifier": "plate H2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.848, 2.176, 1.749, 3.959, 0.764, 0.274, 2.33, 2.547, 2.405, 1.127, 3.969, 3.396, 1.524, 1.278, 3.156, 1.796, 2.218, 3.19, 3.923, 2.89, 0.597, 1.526, 1.829, 3.047, 0.608, 3.25, 2.011, 0.85, 2.68, 3.464, 2.731, 0.751, 1.166, 0.571, 0.233, 0.05, 3.905, 2.795, 0.311, 1.042, 3.058, 3.508, 1.098, 2.723, 2.534, 1.272, 1.675, 1.56, 1.638, 0.265, 1.068] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_177", + "sample document": { + "location identifier": "H3", + "sample identifier": "plate H3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.715, 0.666, 1.117, 1.616, 2.322, 0.347, 2.701, 3.35, 1.514, 2.263, 1.48, 3.867, 2.94, 2.395, 3.218, 2.23, 0.952, 1.044, 3.106, 1.89, 3.422, 2.878, 2.88, 3.832, 1.089, 0.428, 3.105, 0.512, 3.336, 1.575, 0.45, 3.211, 2.415, 2.396, 2.016, 0.085, 0.048, 2.955, 1.911, 3.702, 1.204, 3.444, 2.797, 2.778, 1.577, 3.641, 2.158, 0.327, 3.316, 3.042, 0.723] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_178", + "sample document": { + "location identifier": "H4", + "sample identifier": "plate H4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.516, 2.532, 2.374, 1.645, 1.836, 1.785, 1.285, 0.526, 1.893, 1.241, 2.188, 0.014, 3.939, 1.813, 2.269, 1.452, 0.543, 0.379, 3.132, 2.181, 1.996, 3.132, 3.403, 0.686, 3.977, 0.08, 0.102, 2.254, 1.448, 2.27, 2.778, 1.196, 0.294, 0.851, 3.934, 0.678, 0.04, 0.75, 0.179, 2.3, 2.763, 2.429, 0.017, 2.46, 3.015, 3.43, 2.858, 0.965, 3.308, 2.189, 1.614] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_179", + "sample document": { + "location identifier": "H5", + "sample identifier": "plate H5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.948, 0.184, 0.86, 2.726, 1.383, 3.129, 1.688, 1.667, 1.756, 1.683, 3.03, 3.078, 3.623, 2.463, 0.992, 3.72, 3.087, 1.878, 1.591, 1.411, 3.792, 0.199, 0.832, 3.418, 3.567, 3.114, 0.943, 1.671, 0.547, 1.222, 3.136, 2.946, 3.258, 0.655, 2.83, 1.012, 3.433, 2.125, 2.55, 1.548, 2.351, 3.082, 2.423, 0.616, 3.732, 3.35, 0.394, 3.996, 2.022, 3.709, 3.771] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_180", + "sample document": { + "location identifier": "H6", + "sample identifier": "plate H6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.087, 1.717, 0.777, 1.821, 3.749, 3.351, 1.442, 3.159, 2.268, 2.185, 0.017, 1.12, 0.534, 2.547, 0.084, 3.819, 2.967, 3.633, 3.98, 0.286, 0.962, 3.327, 0.042, 3.059, 0.709, 1.775, 0.215, 3.685, 0.216, 2.72, 0.946, 3.648, 0.838, 1.45, 0.049, 1.229, 2.481, 2.834, 3.08, 1.66, 1.991, 2.965, 0.282, 3.362, 2.334, 1.962, 1.889, 2.069, 3.648, 3.531, 1.426] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 537.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_181", + "sample document": { + "location identifier": "H7", + "sample identifier": "plate H7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.363, 2.042, 3.422, 2.809, 3.759, 1.675, 1.717, 1.111, 1.973, 3.135, 1.757, 2.943, 3.548, 1.239, 0.368, 0.282, 3.083, 2.498, 2.855, 1.338, 0.133, 0.552, 2.319, 2.295, 1.996, 3.045, 0.679, 0.724, 2.747, 3.886, 2.145, 0.036, 0.685, 1.293, 0.583, 1.606, 1.415, 2.641, 0.289, 3.554, 0.763, 1.722, 1.107, 2.524, 0.234, 0.022, 0.733, 2.123, 1.965, 1.68, 2.805] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_183", + "sample document": { + "location identifier": "H9", + "sample identifier": "plate H9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.466, 3.203, 2.813, 2.363, 1.363, 1.492, 1.617, 2.882, 0.365, 3.927, 3.065, 2.838, 2.402, 2.44, 2.233, 1.298, 1.006, 2.415, 2.476, 3.765, 2.255, 3.884, 0.879, 2.578, 2.613, 2.633, 0.742, 0.805, 3.052, 0.424, 2.26, 3.547, 0.21, 3.833, 1.088, 3.555, 2.252, 2.717, 1.211, 1.75, 0.875, 1.117, 0.406, 1.955, 1.222, 2.99, 1.173, 0.118, 1.536, 2.059, 2.014] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_184", + "sample document": { + "location identifier": "H10", + "sample identifier": "plate H10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.118, 0.037, 1.998, 0.223, 1.582, 2.324, 0.235, 3.749, 2.729, 0.749, 0.812, 3.829, 3.941, 1.667, 3.518, 2.627, 2.568, 1.351, 2.678, 3.045, 2.288, 1.204, 0.725, 2.889, 1.137, 3.477, 2.923, 1.356, 3.623, 1.46, 0.624, 3.268, 0.992, 2.409, 3.141, 3.51, 2.212, 3.61, 3.505, 1.231, 2.017, 2.967, 2.481, 1.001, 0.063, 1.287, 0.465, 0.288, 1.704, 0.362, 2.604] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_185", + "sample document": { + "location identifier": "H11", + "sample identifier": "plate H11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.766, 2.857, 3.014, 3.725, 1.914, 3.311, 3.108, 3.085, 2.105, 3.401, 2.879, 0.126, 1.269, 0.125, 1.543, 2.836, 1.532, 2.526, 0.007, 0.415, 2.957, 1.845, 1.447, 1.027, 3.321, 2.723, 3.724, 2.826, 3.849, 3.012, 2.635, 3.651, 3.26, 2.855, 1.857, 0.41, 1.978, 2.683, 1.227, 0.198, 3.103, 0.525, 1.4, 1.83, 3.138, 2.84, 1.211, 0.875, 2.52, 2.45, 2.932] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_186", + "sample document": { + "location identifier": "H12", + "sample identifier": "plate H12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.762, 1.696, 3.947, 3.647, 0.921, 1.41, 1.986, 0.404, 3.19, 3.586, 0.282, 3.235, 3.093, 0.766, 3.227, 0.866, 2.414, 2.267, 1.132, 0.858, 2.848, 1.298, 3.809, 1.312, 2.432, 0.444, 3.617, 1.889, 0.481, 1.511, 2.848, 0.306, 1.399, 0.079, 0.872, 1.955, 3.313, 3.208, 0.935, 3.0, 3.991, 2.279, 2.036, 0.612, 2.821, 1.289, 2.307, 1.063, 3.91, 1.974, 2.797] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 522.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_187", + "sample document": { + "location identifier": "H13", + "sample identifier": "plate H13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.608, 1.387, 1.592, 0.084, 0.463, 1.887, 2.635, 1.214, 0.476, 1.793, 0.097, 3.923, 1.678, 0.737, 3.975, 1.836, 3.013, 3.893, 1.272, 1.553, 3.206, 1.331, 2.132, 0.867, 0.569, 3.261, 3.196, 2.49, 1.142, 2.137, 2.553, 1.978, 2.506, 2.714, 0.24, 2.919, 3.807, 3.995, 0.409, 0.068, 0.678, 1.993, 0.459, 1.206, 3.894, 2.356, 0.358, 3.874, 2.845, 3.453, 3.293] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_188", + "sample document": { + "location identifier": "H14", + "sample identifier": "plate H14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.17, 2.638, 0.421, 3.59, 1.276, 3.255, 0.724, 3.514, 1.201, 2.69, 0.144, 0.072, 2.339, 3.24, 2.118, 1.416, 2.964, 0.497, 1.056, 2.029, 3.018, 3.483, 1.204, 0.874, 1.213, 0.872, 0.925, 0.973, 2.213, 2.903, 3.322, 3.645, 1.689, 2.843, 1.382, 3.34, 2.085, 3.123, 2.963, 3.663, 3.082, 0.48, 3.208, 1.377, 0.533, 1.92, 2.119, 1.966, 1.775, 0.939, 1.393] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_189", + "sample document": { + "location identifier": "H15", + "sample identifier": "plate H15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.377, 1.789, 1.423, 0.275, 1.687, 1.434, 3.546, 2.377, 0.404, 2.329, 3.751, 1.301, 2.297, 3.368, 0.499, 2.382, 3.495, 1.857, 2.778, 3.33, 3.84, 1.533, 1.392, 2.947, 2.537, 0.275, 3.826, 0.341, 3.292, 2.753, 2.959, 3.197, 1.273, 1.51, 3.945, 1.855, 0.265, 2.567, 3.695, 1.905, 2.539, 0.746, 2.559, 1.334, 3.331, 3.179, 0.91, 2.008, 0.034, 3.538, 2.623] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_190", + "sample document": { + "location identifier": "H16", + "sample identifier": "plate H16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.108, 2.997, 1.609, 1.553, 1.843, 0.396, 2.476, 1.738, 1.411, 1.607, 3.204, 3.085, 1.651, 3.37, 0.553, 0.027, 0.787, 3.423, 2.643, 2.116, 0.928, 2.162, 0.872, 0.791, 3.093, 2.974, 0.058, 3.616, 3.357, 3.364, 1.817, 0.307, 3.753, 0.129, 2.85, 0.2, 3.664, 3.956, 2.102, 1.459, 1.789, 0.829, 2.283, 0.297, 3.334, 1.66, 0.908, 1.964, 2.777, 3.151, 0.122] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_191", + "sample document": { + "location identifier": "H17", + "sample identifier": "plate H17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.585, 1.39, 1.421, 1.695, 1.946, 2.124, 0.817, 2.459, 2.868, 0.338, 2.86, 2.38, 2.046, 3.79, 2.897, 3.331, 1.521, 0.52, 0.353, 0.363, 0.831, 1.321, 1.183, 0.327, 0.098, 3.879, 0.575, 1.457, 1.432, 2.066, 2.094, 0.838, 0.206, 3.242, 3.232, 2.916, 2.332, 2.433, 0.904, 2.075, 2.846, 1.496, 3.233, 1.121, 2.928, 2.448, 0.236, 0.507, 0.436, 2.329, 3.386] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_192", + "sample document": { + "location identifier": "H18", + "sample identifier": "plate H18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.443, 2.423, 2.787, 3.291, 1.264, 0.206, 1.094, 1.596, 2.066, 1.549, 3.36, 1.026, 0.801, 2.243, 2.021, 2.174, 2.804, 0.558, 3.98, 0.999, 3.087, 3.615, 2.278, 1.517, 3.334, 2.087, 0.062, 1.398, 1.65, 3.643, 0.068, 1.02, 3.103, 2.68, 0.65, 2.415, 1.418, 3.95, 1.967, 2.71, 1.238, 0.837, 2.837, 0.526, 3.485, 0.47, 2.431, 2.877, 0.907, 0.273, 1.431] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_193", + "sample document": { + "location identifier": "H19", + "sample identifier": "plate H19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.949, 0.456, 1.33, 0.298, 1.827, 0.145, 1.27, 3.957, 3.177, 0.144, 3.695, 3.946, 2.423, 1.48, 2.34, 1.923, 2.121, 1.593, 3.606, 0.756, 2.854, 2.59, 1.27, 3.76, 2.25, 0.778, 1.751, 2.031, 2.864, 3.655, 1.184, 0.491, 1.376, 2.211, 0.119, 0.564, 1.772, 2.381, 2.822, 2.269, 0.147, 3.992, 2.79, 2.566, 1.542, 0.891, 0.413, 3.045, 1.145, 2.546, 0.31] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_194", + "sample document": { + "location identifier": "H20", + "sample identifier": "plate H20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.284, 1.3, 3.517, 2.576, 1.358, 3.185, 1.569, 2.048, 1.049, 2.393, 3.238, 1.093, 3.521, 2.959, 3.204, 2.569, 0.211, 1.361, 1.776, 0.15, 3.74, 2.77, 1.336, 0.608, 2.862, 3.8, 2.704, 2.218, 1.359, 0.365, 2.706, 0.886, 0.317, 3.345, 3.9, 3.19, 1.859, 3.635, 2.76, 1.378, 0.203, 0.332, 1.773, 3.876, 0.909, 2.899, 3.268, 3.606, 2.338, 2.322, 0.201] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_195", + "sample document": { + "location identifier": "H21", + "sample identifier": "plate H21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.684, 3.369, 2.396, 0.569, 2.513, 3.964, 2.908, 3.714, 1.558, 0.481, 3.35, 0.689, 0.684, 3.687, 2.352, 0.775, 0.176, 3.059, 0.013, 0.709, 0.576, 2.6, 0.397, 3.946, 3.407, 0.997, 1.46, 3.699, 3.962, 0.531, 3.097, 3.88, 3.036, 0.163, 1.022, 1.516, 1.92, 2.776, 1.386, 3.226, 2.95, 3.92, 1.202, 0.897, 0.852, 3.643, 1.088, 0.189, 2.556, 2.123, 3.092] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_196", + "sample document": { + "location identifier": "H22", + "sample identifier": "plate H22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.547, 2.324, 1.612, 3.625, 3.083, 2.971, 2.449, 1.161, 1.515, 2.503, 3.209, 3.751, 1.026, 1.383, 3.47, 1.652, 0.521, 2.665, 0.835, 2.855, 1.4, 1.672, 0.786, 1.759, 0.655, 1.398, 3.499, 3.094, 3.764, 3.909, 1.27, 1.143, 1.839, 1.438, 2.55, 1.555, 1.424, 0.538, 1.938, 2.545, 3.471, 1.614, 3.87, 0.722, 3.741, 0.169, 0.175, 3.514, 1.382, 1.991, 0.567] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_197", + "sample document": { + "location identifier": "H23", + "sample identifier": "plate H23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.524, 1.72, 3.268, 1.692, 2.874, 1.537, 3.853, 2.969, 1.684, 3.471, 3.355, 1.397, 1.606, 1.233, 2.066, 1.912, 3.588, 2.832, 1.914, 0.227, 3.982, 0.726, 2.29, 3.383, 3.785, 1.801, 0.064, 2.017, 0.486, 1.222, 3.985, 1.712, 1.772, 3.341, 3.746, 3.422, 2.571, 3.746, 3.675, 0.018, 1.571, 1.568, 0.253, 3.073, 0.115, 0.216, 2.264, 3.489, 1.675, 2.257, 0.587] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_198", + "sample document": { + "location identifier": "H24", + "sample identifier": "plate H24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.681, 3.467, 1.763, 0.584, 0.797, 3.43, 3.884, 1.906, 1.072, 1.473, 1.835, 2.482, 0.462, 3.486, 1.643, 3.624, 2.265, 1.486, 2.643, 3.341, 3.841, 3.156, 1.896, 2.655, 2.413, 0.472, 3.217, 3.268, 3.569, 3.537, 0.574, 0.342, 2.229, 0.635, 3.303, 2.244, 0.009, 2.756, 2.949, 3.992, 2.686, 1.839, 2.603, 2.544, 3.736, 3.085, 3.791, 3.587, 2.472, 0.591, 3.998] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_200", + "sample document": { + "location identifier": "I1", + "sample identifier": "plate I1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.003, 3.031, 2.916, 0.745, 1.525, 1.571, 3.107, 2.17, 0.325, 0.213, 0.616, 2.337, 1.534, 0.898, 1.492, 0.253, 3.826, 0.182, 3.398, 3.615, 3.508, 2.537, 2.651, 0.654, 2.002, 0.553, 3.351, 2.919, 3.327, 0.68, 3.629, 0.795, 2.977, 3.539, 2.571, 1.311, 3.313, 3.89, 1.778, 0.673, 0.901, 0.585, 2.623, 3.778, 2.069, 3.502, 1.068, 1.646, 2.243, 2.832, 3.965] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_201", + "sample document": { + "location identifier": "I2", + "sample identifier": "plate I2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.404, 3.073, 0.975, 0.49, 3.466, 0.379, 2.261, 2.743, 0.972, 2.22, 0.188, 2.842, 3.644, 0.583, 3.82, 3.359, 1.995, 2.327, 0.181, 0.94, 3.936, 2.404, 2.725, 2.714, 2.923, 3.913, 2.872, 2.584, 2.5, 3.484, 1.705, 0.675, 0.495, 0.715, 0.225, 1.722, 2.001, 3.048, 3.104, 0.931, 1.051, 1.147, 0.805, 2.453, 0.713, 1.742, 2.978, 3.195, 2.249, 0.142, 3.072] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_202", + "sample document": { + "location identifier": "I3", + "sample identifier": "plate I3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.318, 2.062, 1.892, 0.028, 0.999, 0.347, 2.261, 1.566, 3.552, 1.506, 3.676, 0.242, 1.487, 0.514, 3.512, 2.347, 2.929, 0.357, 2.098, 1.358, 2.946, 3.222, 3.249, 3.888, 2.789, 1.599, 0.272, 2.001, 1.18, 0.934, 3.677, 0.335, 2.357, 0.412, 2.386, 2.613, 2.603, 0.686, 3.226, 1.374, 3.74, 1.481, 3.551, 3.425, 1.375, 0.904, 3.318, 1.938, 1.2, 3.395, 0.049] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_203", + "sample document": { + "location identifier": "I4", + "sample identifier": "plate I4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.838, 0.15, 2.784, 0.125, 0.095, 2.812, 2.003, 1.238, 3.4, 0.075, 0.26, 0.386, 2.618, 1.829, 3.341, 1.885, 1.075, 2.128, 0.898, 3.743, 2.242, 1.131, 0.724, 1.618, 1.464, 3.671, 3.824, 2.513, 1.885, 2.28, 2.334, 0.8, 1.784, 0.885, 0.838, 0.185, 3.573, 0.286, 2.291, 3.801, 0.599, 3.447, 3.825, 1.298, 3.479, 1.095, 0.933, 1.596, 2.033, 3.018, 2.243] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_204", + "sample document": { + "location identifier": "I5", + "sample identifier": "plate I5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.809, 0.302, 3.651, 1.806, 1.707, 3.425, 1.166, 2.66, 0.424, 2.988, 3.49, 3.353, 1.119, 1.741, 3.46, 2.601, 1.732, 0.99, 3.155, 2.312, 0.788, 3.836, 1.097, 3.144, 2.794, 1.305, 3.426, 2.138, 0.369, 2.737, 2.227, 0.479, 2.866, 0.037, 2.524, 0.497, 2.133, 3.079, 3.131, 0.76, 2.406, 1.625, 1.867, 0.812, 1.109, 0.094, 2.706, 3.557, 0.018, 2.493, 3.201] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_205", + "sample document": { + "location identifier": "I6", + "sample identifier": "plate I6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.605, 2.878, 0.706, 1.454, 3.973, 3.204, 0.507, 3.011, 0.401, 3.999, 3.027, 2.291, 1.687, 0.76, 3.01, 0.486, 1.082, 3.216, 2.962, 0.468, 2.652, 1.858, 2.395, 3.905, 3.162, 1.969, 0.285, 2.034, 2.7, 2.599, 3.869, 2.119, 1.876, 3.535, 1.622, 1.601, 2.159, 2.582, 2.551, 1.292, 1.625, 0.068, 2.73, 0.76, 3.378, 3.334, 0.179, 0.051, 2.099, 3.607, 1.623] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_206", + "sample document": { + "location identifier": "I7", + "sample identifier": "plate I7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.34, 1.055, 2.024, 0.548, 2.746, 0.482, 0.801, 2.291, 2.003, 2.919, 2.473, 0.31, 1.802, 0.13, 0.908, 0.414, 2.151, 3.138, 1.409, 2.327, 2.499, 0.665, 1.67, 2.842, 2.584, 3.128, 1.634, 0.526, 3.828, 1.79, 0.233, 3.934, 3.092, 0.975, 3.528, 1.063, 3.851, 2.986, 2.875, 1.118, 1.358, 0.29, 0.547, 2.372, 3.152, 3.757, 0.928, 0.63, 2.47, 2.919, 2.027] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_207", + "sample document": { + "location identifier": "I8", + "sample identifier": "plate I8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.913, 0.69, 1.28, 3.123, 3.674, 3.385, 3.181, 1.964, 3.618, 2.848, 0.275, 2.463, 0.213, 2.686, 2.538, 1.217, 0.826, 0.601, 3.844, 0.563, 3.165, 0.262, 0.291, 0.969, 2.208, 0.117, 3.297, 3.69, 2.827, 2.2, 1.003, 2.055, 0.908, 3.762, 3.32, 3.244, 1.812, 1.851, 3.854, 1.678, 0.669, 1.022, 3.257, 2.269, 1.082, 1.827, 0.334, 3.686, 0.613, 2.539, 0.101] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_208", + "sample document": { + "location identifier": "I9", + "sample identifier": "plate I9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.029, 2.626, 2.356, 2.862, 0.65, 0.398, 0.311, 0.914, 3.556, 0.088, 3.491, 3.136, 1.417, 1.844, 2.219, 1.554, 0.451, 3.366, 3.293, 3.405, 2.974, 0.746, 2.166, 3.893, 2.142, 1.005, 2.021, 3.886, 0.381, 3.782, 3.611, 3.076, 0.287, 2.099, 0.974, 3.429, 2.552, 0.899, 2.669, 2.845, 1.501, 0.937, 0.297, 1.589, 1.178, 1.886, 1.84, 0.424, 2.863, 0.273, 3.883] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_209", + "sample document": { + "location identifier": "I10", + "sample identifier": "plate I10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.319, 1.32, 3.133, 1.127, 3.282, 0.46, 2.463, 0.72, 3.645, 2.377, 0.425, 0.533, 3.773, 0.477, 0.414, 2.848, 3.318, 0.87, 2.79, 3.001, 3.551, 0.697, 0.447, 1.904, 2.037, 0.449, 0.576, 2.714, 0.256, 3.165, 1.596, 1.023, 0.108, 3.899, 3.291, 1.756, 1.154, 0.971, 1.691, 2.968, 0.089, 0.178, 3.023, 0.468, 1.076, 0.403, 0.523, 1.112, 0.763, 3.037, 2.521] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_210", + "sample document": { + "location identifier": "I11", + "sample identifier": "plate I11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.554, 0.072, 1.271, 0.331, 3.622, 0.872, 1.229, 3.089, 2.833, 3.883, 3.748, 0.464, 0.48, 0.78, 3.401, 0.424, 3.874, 1.185, 2.658, 1.694, 2.346, 3.178, 3.821, 2.912, 3.373, 1.673, 3.979, 0.828, 1.633, 3.925, 3.463, 1.95, 1.218, 0.643, 2.042, 0.95, 2.837, 3.567, 3.668, 0.883, 3.924, 1.882, 2.858, 3.084, 0.341, 3.714, 2.543, 3.687, 1.674, 3.979, 0.649] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_211", + "sample document": { + "location identifier": "I12", + "sample identifier": "plate I12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.927, 2.105, 1.342, 0.174, 0.375, 0.251, 2.359, 0.958, 1.949, 0.892, 0.401, 1.456, 2.907, 0.42, 1.797, 3.245, 3.837, 2.738, 2.451, 1.587, 0.306, 1.517, 1.774, 1.769, 0.464, 0.32, 0.736, 2.571, 3.658, 3.13, 0.291, 3.154, 1.654, 3.276, 3.536, 3.845, 3.875, 0.468, 1.666, 0.698, 0.478, 2.609, 1.718, 3.99, 3.523, 0.425, 3.951, 2.664, 2.543, 0.469, 2.706] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_212", + "sample document": { + "location identifier": "I13", + "sample identifier": "plate I13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.948, 3.222, 2.391, 0.342, 2.409, 0.33, 3.572, 3.71, 0.055, 3.514, 3.788, 1.299, 2.819, 0.601, 1.247, 3.801, 3.63, 0.884, 1.952, 3.369, 3.368, 1.072, 1.752, 1.109, 1.696, 3.798, 1.783, 2.246, 0.038, 0.369, 2.072, 0.027, 3.188, 0.424, 3.343, 3.931, 3.263, 2.933, 1.126, 3.514, 0.303, 0.758, 1.611, 1.184, 0.689, 1.309, 2.899, 3.389, 2.276, 0.624, 0.32] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_213", + "sample document": { + "location identifier": "I14", + "sample identifier": "plate I14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.78, 0.59, 1.1, 3.337, 3.876, 1.469, 1.281, 2.646, 2.611, 2.547, 1.326, 3.671, 3.686, 1.442, 3.76, 2.111, 2.395, 1.257, 1.315, 0.538, 0.697, 3.757, 2.438, 3.066, 2.609, 3.461, 0.568, 0.419, 0.387, 0.899, 2.393, 3.97, 3.414, 0.048, 0.291, 3.437, 2.088, 1.086, 3.467, 2.461, 1.981, 0.287, 2.515, 0.967, 2.976, 1.087, 1.925, 3.741, 0.929, 3.198, 0.504] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_214", + "sample document": { + "location identifier": "I15", + "sample identifier": "plate I15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.132, 0.961, 0.085, 3.622, 2.022, 2.152, 2.034, 0.728, 0.414, 0.901, 0.862, 2.258, 1.711, 0.153, 1.356, 0.257, 3.637, 1.15, 0.322, 0.023, 1.309, 1.79, 2.853, 2.557, 0.409, 1.242, 1.47, 0.089, 1.522, 1.536, 0.826, 3.49, 1.188, 0.395, 0.261, 3.009, 3.329, 0.425, 2.269, 1.285, 0.053, 0.357, 3.052, 1.56, 1.119, 2.028, 0.803, 0.814, 1.62, 0.829, 2.287] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_215", + "sample document": { + "location identifier": "I16", + "sample identifier": "plate I16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.591, 0.606, 3.175, 3.194, 0.341, 2.107, 1.528, 3.212, 0.78, 0.681, 1.945, 3.205, 2.878, 0.074, 1.372, 1.069, 1.316, 3.891, 2.346, 0.927, 3.211, 2.881, 3.037, 3.969, 0.951, 2.738, 1.292, 1.438, 2.381, 0.438, 0.656, 2.468, 0.692, 3.248, 2.235, 2.883, 2.013, 1.2, 3.919, 0.901, 1.8, 1.212, 1.489, 0.603, 2.108, 1.152, 0.173, 1.486, 3.747, 0.958, 3.487] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_216", + "sample document": { + "location identifier": "I17", + "sample identifier": "plate I17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.922, 3.273, 3.902, 3.076, 3.709, 1.569, 3.205, 2.243, 1.603, 0.815, 0.089, 0.831, 0.341, 0.024, 3.476, 2.513, 3.63, 1.838, 2.489, 3.056, 0.115, 3.971, 1.445, 3.126, 1.998, 1.391, 2.433, 1.86, 3.798, 2.565, 3.806, 1.691, 1.422, 0.95, 3.734, 3.195, 0.79, 0.172, 2.525, 1.313, 2.807, 2.956, 2.316, 0.086, 1.711, 0.381, 1.147, 0.579, 2.632, 2.639, 0.543] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_217", + "sample document": { + "location identifier": "I18", + "sample identifier": "plate I18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.647, 1.258, 1.902, 3.371, 0.95, 1.828, 0.775, 1.077, 2.318, 3.135, 1.344, 2.444, 3.038, 1.008, 2.398, 3.408, 3.39, 0.29, 0.28, 1.722, 3.458, 3.313, 1.175, 0.248, 1.159, 1.654, 1.359, 1.415, 1.617, 0.244, 1.854, 3.228, 1.159, 2.021, 0.159, 0.433, 3.52, 1.579, 2.783, 1.367, 0.015, 3.094, 0.207, 2.177, 1.463, 0.511, 3.278, 3.077, 3.312, 0.972, 1.756] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_218", + "sample document": { + "location identifier": "I19", + "sample identifier": "plate I19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.288, 2.351, 0.916, 1.084, 0.333, 0.082, 1.654, 2.212, 3.295, 0.469, 3.359, 3.46, 2.073, 1.281, 2.116, 1.285, 1.016, 0.848, 1.965, 3.888, 1.811, 1.507, 2.913, 1.707, 0.363, 3.105, 2.997, 2.785, 0.647, 2.376, 2.281, 2.103, 0.644, 2.488, 1.565, 0.876, 0.243, 0.936, 3.825, 0.35, 1.866, 3.367, 3.487, 0.897, 0.656, 3.633, 2.134, 0.896, 3.346, 3.226, 2.262] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_219", + "sample document": { + "location identifier": "I20", + "sample identifier": "plate I20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.229, 1.346, 1.084, 3.944, 2.781, 3.437, 3.209, 0.721, 1.228, 1.084, 2.869, 1.564, 0.919, 2.187, 1.255, 2.816, 3.584, 3.715, 1.239, 1.042, 0.079, 1.023, 1.615, 2.022, 2.444, 2.019, 2.015, 1.051, 0.729, 0.971, 2.101, 3.438, 1.42, 0.113, 0.051, 0.756, 3.56, 2.543, 2.784, 1.439, 1.033, 0.215, 2.597, 3.265, 2.997, 1.802, 2.567, 2.71, 3.4, 0.817, 2.549] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_220", + "sample document": { + "location identifier": "I21", + "sample identifier": "plate I21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.18, 2.106, 2.184, 2.183, 1.206, 3.731, 3.062, 1.5, 0.761, 1.421, 2.158, 3.991, 0.256, 2.983, 3.43, 0.144, 0.806, 2.135, 0.498, 3.255, 1.041, 0.93, 3.8, 0.008, 3.863, 2.425, 2.349, 3.024, 0.642, 3.452, 3.305, 1.65, 3.912, 2.422, 0.92, 1.332, 3.235, 1.929, 2.845, 1.025, 0.498, 1.043, 2.023, 0.017, 2.875, 0.224, 2.34, 0.281, 3.566, 1.657, 1.76] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_221", + "sample document": { + "location identifier": "I22", + "sample identifier": "plate I22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.574, 2.901, 1.561, 1.507, 0.249, 2.306, 2.176, 2.32, 2.78, 1.381, 0.037, 0.858, 1.308, 2.115, 0.507, 0.078, 1.834, 2.062, 2.098, 0.908, 2.876, 3.29, 3.473, 2.757, 3.997, 2.907, 3.782, 1.133, 3.638, 0.084, 2.067, 3.457, 2.984, 1.691, 2.731, 2.749, 2.35, 0.914, 0.67, 3.026, 1.059, 3.609, 0.065, 3.643, 0.46, 0.185, 0.714, 1.901, 2.367, 0.145, 0.506] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 545.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_222", + "sample document": { + "location identifier": "I23", + "sample identifier": "plate I23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.219, 1.468, 0.749, 2.884, 1.283, 3.427, 2.803, 1.51, 1.342, 2.523, 1.042, 2.681, 2.696, 3.314, 0.579, 1.873, 3.617, 3.383, 1.757, 1.727, 0.92, 1.391, 3.072, 3.848, 3.267, 3.225, 3.829, 2.297, 3.812, 2.192, 1.88, 2.765, 3.493, 3.578, 3.848, 1.989, 2.235, 2.807, 1.447, 3.321, 3.547, 3.404, 3.328, 0.502, 0.016, 0.928, 1.368, 0.329, 3.881, 2.311, 1.097] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_223", + "sample document": { + "location identifier": "I24", + "sample identifier": "plate I24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.518, 0.609, 2.417, 3.586, 0.827, 2.396, 0.9, 3.616, 2.058, 3.598, 0.506, 1.697, 3.15, 0.642, 2.277, 3.187, 3.118, 3.465, 2.59, 3.638, 0.809, 1.935, 2.436, 2.18, 1.516, 2.063, 2.569, 3.832, 2.339, 1.856, 3.5, 2.415, 1.501, 1.094, 3.362, 2.155, 1.075, 3.991, 3.02, 3.592, 1.334, 3.19, 3.389, 3.723, 3.04, 1.706, 0.177, 3.86, 1.739, 1.74, 2.25] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_225", + "sample document": { + "location identifier": "J1", + "sample identifier": "plate J1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.864, 1.291, 2.673, 0.287, 0.582, 2.173, 0.237, 2.069, 2.763, 3.827, 1.068, 1.277, 0.202, 0.097, 2.091, 0.196, 2.056, 1.279, 0.121, 2.112, 3.126, 0.444, 2.997, 2.303, 1.619, 2.546, 2.712, 3.139, 3.809, 1.886, 2.708, 2.093, 0.598, 3.606, 2.636, 1.123, 2.827, 0.806, 2.78, 3.982, 0.838, 1.922, 0.257, 3.765, 0.266, 1.913, 3.186, 3.625, 0.949, 1.51, 2.121] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 547.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_226", + "sample document": { + "location identifier": "J2", + "sample identifier": "plate J2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.581, 1.617, 3.628, 3.123, 0.419, 2.294, 0.369, 2.668, 2.035, 3.46, 1.097, 2.26, 0.877, 1.118, 2.975, 0.678, 0.596, 1.461, 0.967, 1.368, 1.249, 2.498, 0.139, 1.273, 1.204, 0.187, 3.232, 2.036, 3.706, 3.36, 3.086, 2.19, 2.298, 3.764, 0.127, 0.475, 0.97, 0.482, 2.216, 2.829, 2.458, 2.138, 0.745, 0.521, 3.741, 3.661, 3.379, 2.646, 1.291, 1.234, 2.59] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_227", + "sample document": { + "location identifier": "J3", + "sample identifier": "plate J3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.163, 3.982, 0.142, 0.871, 0.082, 1.478, 2.354, 1.919, 0.231, 3.062, 2.332, 2.962, 2.675, 0.374, 2.907, 3.961, 1.112, 0.991, 2.499, 3.707, 0.114, 3.245, 2.137, 2.91, 3.11, 1.753, 3.617, 1.532, 1.542, 0.808, 0.585, 0.744, 2.471, 0.769, 0.922, 2.207, 2.156, 2.893, 0.044, 2.996, 2.616, 2.562, 1.984, 3.767, 0.125, 3.176, 2.069, 0.147, 0.834, 3.699, 2.266] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_228", + "sample document": { + "location identifier": "J4", + "sample identifier": "plate J4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.654, 2.791, 1.526, 2.476, 2.918, 1.844, 1.232, 1.761, 2.329, 1.861, 0.821, 0.376, 3.423, 2.476, 1.587, 0.49, 1.905, 3.451, 0.699, 1.805, 2.219, 0.947, 3.503, 1.091, 1.551, 1.26, 2.37, 2.784, 3.934, 3.683, 3.47, 0.698, 1.842, 2.541, 2.93, 1.953, 0.945, 2.293, 2.004, 0.362, 0.924, 1.131, 1.715, 1.135, 1.794, 2.185, 2.561, 1.291, 2.537, 2.686, 0.163] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_229", + "sample document": { + "location identifier": "J5", + "sample identifier": "plate J5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.695, 0.134, 1.894, 0.047, 0.707, 3.288, 0.435, 0.924, 1.658, 3.474, 2.447, 1.826, 2.645, 2.391, 0.123, 2.534, 0.882, 3.545, 3.634, 3.544, 3.612, 1.447, 0.336, 0.88, 1.087, 3.231, 2.368, 3.296, 3.366, 2.699, 1.078, 0.246, 1.247, 3.52, 2.774, 0.563, 3.948, 2.493, 2.223, 2.664, 0.51, 1.368, 0.345, 0.888, 2.477, 3.304, 3.07, 2.743, 1.671, 3.651, 1.678] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_230", + "sample document": { + "location identifier": "J6", + "sample identifier": "plate J6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.745, 2.903, 3.141, 0.551, 3.248, 3.797, 1.014, 2.959, 1.476, 0.92, 1.138, 1.558, 2.959, 2.395, 2.201, 0.579, 3.124, 3.616, 3.559, 2.585, 2.388, 1.322, 0.97, 3.034, 2.243, 1.101, 3.448, 2.403, 1.782, 0.161, 3.624, 1.625, 3.714, 1.02, 3.333, 1.343, 2.106, 2.969, 3.525, 0.765, 2.933, 3.534, 0.747, 1.744, 3.371, 3.81, 1.386, 2.492, 0.276, 2.725, 3.945] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_231", + "sample document": { + "location identifier": "J7", + "sample identifier": "plate J7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.126, 2.111, 1.065, 3.29, 0.423, 1.933, 0.106, 2.307, 2.147, 0.349, 2.611, 1.176, 1.314, 1.295, 3.512, 1.843, 1.938, 3.062, 0.857, 2.472, 0.155, 0.091, 2.793, 3.651, 2.854, 0.575, 3.225, 3.663, 2.433, 3.714, 0.955, 2.127, 3.056, 0.216, 0.497, 3.514, 2.649, 1.73, 2.91, 3.41, 1.999, 0.662, 1.378, 0.416, 0.322, 2.357, 3.432, 0.448, 3.858, 1.967, 3.447] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_232", + "sample document": { + "location identifier": "J8", + "sample identifier": "plate J8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.43, 3.418, 0.253, 3.789, 3.035, 3.317, 1.413, 0.435, 3.847, 2.707, 0.443, 3.873, 2.432, 3.393, 0.484, 2.12, 1.098, 0.797, 3.998, 3.194, 0.208, 0.152, 1.447, 0.472, 3.493, 2.713, 2.377, 3.329, 0.497, 1.143, 2.776, 3.804, 0.466, 0.267, 1.525, 2.708, 2.803, 0.426, 1.461, 0.196, 1.235, 1.294, 3.062, 0.703, 1.556, 0.788, 2.945, 1.022, 3.838, 0.237, 2.334] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_233", + "sample document": { + "location identifier": "J9", + "sample identifier": "plate J9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.65, 3.86, 2.772, 3.239, 3.277, 1.971, 3.78, 0.296, 0.322, 0.94, 2.084, 3.938, 2.704, 3.93, 0.639, 3.406, 2.165, 1.867, 1.775, 3.316, 0.671, 3.336, 3.802, 1.958, 2.913, 1.089, 0.744, 2.916, 2.704, 3.767, 1.354, 3.49, 0.26, 2.808, 3.125, 3.943, 1.693, 1.027, 2.247, 0.737, 3.022, 0.13, 1.139, 3.256, 3.15, 1.356, 0.358, 0.772, 0.916, 1.381, 0.78] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_234", + "sample document": { + "location identifier": "J10", + "sample identifier": "plate J10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.154, 2.063, 0.92, 1.662, 0.314, 0.058, 0.814, 0.325, 2.188, 1.226, 0.863, 1.591, 0.555, 3.585, 2.594, 3.678, 3.895, 0.804, 0.695, 1.713, 1.137, 3.619, 1.037, 0.294, 0.541, 2.196, 0.545, 2.807, 1.557, 0.73, 3.971, 1.999, 1.323, 2.986, 2.199, 1.427, 3.339, 1.146, 2.81, 3.885, 0.879, 0.701, 0.059, 3.51, 2.158, 2.539, 0.584, 3.671, 0.556, 1.677, 0.462] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_235", + "sample document": { + "location identifier": "J11", + "sample identifier": "plate J11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.967, 0.221, 3.668, 3.643, 3.535, 1.025, 0.626, 1.12, 2.118, 3.512, 2.006, 2.768, 1.457, 1.255, 2.863, 0.268, 1.568, 1.385, 1.166, 0.338, 2.749, 1.993, 0.809, 0.834, 0.435, 3.56, 1.527, 2.135, 2.002, 1.612, 0.874, 2.25, 3.879, 0.268, 0.003, 1.778, 1.654, 3.343, 2.664, 0.402, 2.713, 0.025, 0.692, 0.373, 2.872, 1.933, 2.601, 2.255, 3.295, 2.27, 3.015] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_236", + "sample document": { + "location identifier": "J12", + "sample identifier": "plate J12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.286, 3.39, 1.338, 1.713, 1.973, 3.411, 2.834, 3.207, 3.974, 3.497, 2.491, 3.118, 0.506, 2.638, 3.755, 2.888, 1.189, 1.251, 1.085, 2.613, 2.225, 2.72, 0.764, 1.625, 2.723, 1.301, 0.436, 1.961, 2.502, 0.959, 3.271, 2.839, 3.731, 2.596, 2.588, 2.86, 2.54, 2.554, 2.03, 2.366, 2.819, 0.135, 2.69, 0.904, 0.222, 0.906, 0.186, 1.735, 3.116, 3.044, 1.411] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_237", + "sample document": { + "location identifier": "J13", + "sample identifier": "plate J13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.004, 2.209, 3.657, 0.79, 3.565, 2.626, 3.713, 2.989, 0.672, 2.975, 0.873, 0.705, 3.014, 0.226, 3.651, 3.387, 1.909, 0.05, 0.895, 0.348, 2.635, 3.221, 2.718, 3.793, 2.089, 0.029, 3.859, 1.403, 1.817, 1.115, 2.701, 2.845, 3.458, 3.547, 2.267, 0.63, 0.074, 1.806, 3.022, 0.234, 2.826, 3.564, 1.357, 3.391, 1.946, 3.43, 3.675, 0.678, 0.571, 1.519, 2.277] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_238", + "sample document": { + "location identifier": "J14", + "sample identifier": "plate J14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.684, 2.22, 2.696, 2.776, 1.783, 3.491, 3.863, 2.7, 3.536, 2.766, 2.31, 1.172, 3.556, 0.274, 2.027, 1.246, 3.466, 1.959, 3.021, 3.313, 0.102, 1.027, 0.661, 1.521, 3.07, 1.863, 3.326, 1.847, 2.658, 0.354, 3.181, 0.832, 0.297, 2.838, 1.016, 0.624, 0.762, 0.771, 0.483, 1.138, 0.21, 3.105, 3.486, 1.468, 0.516, 2.391, 1.8, 3.117, 3.918, 2.183, 0.208] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_239", + "sample document": { + "location identifier": "J15", + "sample identifier": "plate J15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.718, 1.549, 2.206, 2.174, 0.657, 1.559, 1.174, 3.705, 3.92, 0.164, 2.016, 0.042, 3.181, 3.584, 1.478, 0.874, 0.718, 3.258, 1.403, 0.484, 2.695, 1.475, 1.882, 3.102, 0.996, 1.541, 3.193, 1.004, 0.678, 0.062, 0.209, 1.928, 0.474, 0.145, 0.462, 3.282, 2.091, 0.663, 0.359, 3.064, 3.587, 1.066, 0.563, 0.973, 2.194, 3.063, 0.304, 1.883, 3.037, 1.517, 1.082] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_240", + "sample document": { + "location identifier": "J16", + "sample identifier": "plate J16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.858, 2.514, 1.699, 1.513, 1.243, 3.666, 3.103, 1.177, 3.115, 2.366, 0.169, 3.026, 3.858, 3.955, 0.088, 3.567, 3.036, 3.122, 2.196, 2.783, 0.054, 2.899, 2.339, 0.897, 1.628, 0.912, 0.909, 0.907, 1.933, 1.237, 1.309, 1.967, 3.161, 2.979, 0.35, 3.413, 2.775, 2.631, 3.219, 3.615, 2.988, 3.486, 1.243, 0.697, 3.417, 2.039, 0.705, 1.018, 2.106, 3.495, 1.268] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_241", + "sample document": { + "location identifier": "J17", + "sample identifier": "plate J17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.761, 0.841, 2.733, 1.027, 0.959, 0.175, 0.801, 3.884, 0.331, 2.757, 2.196, 3.243, 1.878, 1.056, 2.202, 3.865, 0.878, 3.604, 0.674, 0.792, 0.404, 3.902, 2.581, 3.795, 0.568, 1.655, 1.641, 1.48, 3.589, 0.206, 3.89, 2.8, 2.437, 3.969, 2.548, 1.125, 0.427, 1.952, 3.391, 3.237, 1.974, 2.747, 2.887, 0.857, 0.792, 0.242, 3.365, 3.64, 1.214, 2.173, 3.827] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 542.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_242", + "sample document": { + "location identifier": "J18", + "sample identifier": "plate J18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.414, 1.431, 2.703, 0.863, 2.858, 2.26, 2.938, 0.459, 3.304, 2.533, 3.32, 0.295, 0.124, 2.866, 3.395, 0.806, 1.908, 2.508, 1.076, 3.437, 2.925, 0.212, 1.436, 2.817, 1.657, 1.015, 1.723, 3.003, 0.325, 2.289, 2.001, 0.265, 1.415, 0.379, 2.476, 1.369, 3.733, 3.105, 3.69, 2.865, 1.488, 1.492, 0.087, 0.704, 2.653, 2.451, 2.762, 1.99, 1.397, 3.436, 1.456] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 557.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_243", + "sample document": { + "location identifier": "J19", + "sample identifier": "plate J19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.132, 0.137, 2.736, 0.901, 1.201, 3.995, 3.885, 3.206, 1.843, 0.536, 3.935, 0.134, 1.014, 0.532, 3.055, 2.879, 3.745, 0.39, 2.025, 1.072, 2.803, 2.818, 2.211, 1.948, 1.433, 0.125, 0.732, 0.164, 3.205, 2.252, 3.732, 1.606, 0.889, 0.832, 0.869, 0.128, 2.679, 3.477, 1.275, 1.374, 3.848, 3.899, 1.846, 2.329, 1.553, 1.358, 3.072, 0.172, 3.598, 3.572, 3.017] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_245", + "sample document": { + "location identifier": "J21", + "sample identifier": "plate J21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.509, 0.671, 3.372, 2.749, 2.485, 2.719, 1.139, 3.749, 1.342, 2.044, 0.391, 3.393, 0.022, 2.702, 3.155, 0.367, 0.355, 2.671, 0.094, 0.719, 2.003, 1.107, 0.725, 2.307, 0.258, 2.915, 2.54, 1.097, 3.005, 2.715, 2.356, 1.172, 1.961, 2.163, 0.05, 3.894, 0.261, 0.485, 3.646, 3.515, 1.385, 2.429, 1.213, 0.156, 1.501, 0.616, 0.176, 3.408, 0.971, 3.531, 1.901] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_246", + "sample document": { + "location identifier": "J22", + "sample identifier": "plate J22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.853, 3.128, 1.393, 0.886, 3.402, 3.945, 1.064, 2.491, 3.569, 0.178, 0.042, 0.744, 2.626, 3.687, 3.218, 1.432, 1.859, 2.652, 3.26, 0.106, 3.869, 3.025, 0.579, 3.334, 3.574, 3.893, 0.568, 0.805, 3.642, 2.739, 3.132, 0.125, 3.474, 0.813, 3.503, 2.044, 0.567, 1.276, 0.647, 3.949, 3.196, 1.994, 0.076, 3.337, 1.343, 1.684, 2.586, 0.469, 2.283, 3.183, 2.317] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_247", + "sample document": { + "location identifier": "J23", + "sample identifier": "plate J23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.755, 1.711, 3.424, 2.031, 3.828, 2.549, 2.059, 1.312, 3.508, 3.376, 0.258, 2.849, 0.83, 1.046, 3.916, 1.269, 1.812, 0.184, 1.173, 0.864, 0.582, 2.004, 3.31, 0.909, 1.874, 2.948, 1.241, 1.991, 1.889, 1.307, 0.099, 2.522, 0.458, 0.421, 2.376, 2.413, 0.049, 2.781, 3.675, 3.495, 2.508, 3.964, 1.139, 0.572, 2.937, 3.144, 3.246, 2.29, 1.426, 0.414, 0.773] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_248", + "sample document": { + "location identifier": "J24", + "sample identifier": "plate J24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.285, 1.109, 2.319, 1.735, 2.75, 2.401, 2.514, 0.157, 0.879, 1.307, 0.067, 3.422, 2.201, 3.277, 1.736, 2.391, 0.408, 2.669, 1.503, 1.22, 3.03, 0.508, 1.678, 2.355, 0.617, 0.865, 2.738, 1.972, 2.73, 3.702, 2.95, 0.565, 1.474, 0.533, 3.814, 1.413, 2.138, 2.686, 3.625, 0.012, 1.534, 2.624, 2.795, 2.187, 2.44, 0.542, 2.937, 1.295, 1.201, 0.753, 2.837] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_250", + "sample document": { + "location identifier": "K1", + "sample identifier": "plate K1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.621, 3.923, 3.194, 1.742, 3.776, 3.43, 3.963, 1.117, 1.885, 3.662, 0.542, 1.427, 1.177, 2.356, 3.502, 1.947, 1.668, 3.462, 0.322, 0.252, 1.722, 3.044, 1.49, 3.685, 0.406, 1.712, 3.491, 3.914, 0.075, 1.927, 1.442, 0.771, 1.976, 0.864, 3.329, 0.642, 2.28, 2.79, 0.037, 1.982, 2.175, 1.568, 1.739, 0.349, 0.992, 1.197, 1.618, 3.83, 2.938, 2.594, 1.269] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_251", + "sample document": { + "location identifier": "K2", + "sample identifier": "plate K2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.832, 0.878, 0.501, 1.114, 0.576, 2.432, 3.508, 1.336, 2.063, 3.939, 0.048, 1.042, 3.958, 2.22, 3.77, 3.45, 0.313, 3.026, 2.86, 3.667, 2.878, 3.424, 2.34, 2.076, 0.154, 1.304, 1.14, 2.693, 3.208, 0.094, 3.66, 0.976, 1.481, 0.657, 3.61, 3.893, 1.474, 3.749, 2.753, 2.209, 2.771, 1.453, 1.974, 2.043, 2.126, 0.525, 1.781, 2.129, 1.221, 1.746, 1.305] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_252", + "sample document": { + "location identifier": "K3", + "sample identifier": "plate K3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.804, 0.077, 2.926, 2.391, 2.407, 2.537, 2.424, 0.959, 3.272, 1.292, 0.815, 2.128, 1.969, 0.279, 3.072, 3.561, 3.3, 2.61, 3.876, 1.976, 0.563, 0.273, 0.651, 0.896, 1.424, 1.45, 0.297, 3.95, 3.629, 3.522, 3.01, 1.471, 1.461, 2.789, 2.856, 0.899, 2.554, 2.266, 1.202, 1.355, 3.049, 2.789, 3.48, 0.916, 1.955, 3.324, 0.005, 1.763, 3.054, 0.964, 2.481] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_253", + "sample document": { + "location identifier": "K4", + "sample identifier": "plate K4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.519, 1.344, 3.77, 0.741, 0.53, 3.425, 2.029, 0.966, 0.957, 2.24, 2.474, 1.33, 3.749, 2.281, 3.344, 0.667, 3.179, 1.423, 2.172, 1.006, 1.033, 1.407, 2.521, 2.926, 1.773, 0.792, 3.734, 2.941, 2.099, 1.445, 2.533, 0.896, 2.664, 1.041, 3.491, 0.126, 1.69, 2.047, 2.325, 1.473, 0.525, 1.299, 0.245, 3.115, 0.575, 1.459, 3.731, 2.635, 2.61, 2.657, 0.825] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_254", + "sample document": { + "location identifier": "K5", + "sample identifier": "plate K5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.34, 0.881, 3.958, 1.447, 2.111, 2.823, 0.843, 2.968, 3.737, 3.691, 3.088, 2.866, 3.511, 3.707, 1.578, 2.666, 2.708, 2.789, 3.218, 2.976, 1.132, 3.097, 0.699, 0.48, 3.734, 1.162, 3.406, 2.351, 0.314, 1.061, 1.099, 0.33, 3.442, 0.62, 2.192, 0.014, 2.705, 3.593, 1.38, 1.302, 0.846, 3.078, 2.588, 1.782, 1.436, 2.432, 0.733, 3.407, 2.996, 2.792, 1.023] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_255", + "sample document": { + "location identifier": "K6", + "sample identifier": "plate K6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.845, 3.392, 3.68, 3.692, 1.242, 0.181, 3.477, 1.713, 0.948, 3.417, 2.492, 2.654, 2.676, 2.592, 2.758, 3.424, 2.891, 1.514, 1.563, 3.96, 3.114, 1.409, 1.915, 2.129, 2.053, 0.509, 2.917, 3.044, 1.301, 0.429, 3.998, 3.355, 1.521, 0.038, 1.253, 0.937, 3.762, 0.927, 0.949, 3.832, 3.227, 1.88, 0.431, 1.884, 2.354, 0.424, 3.912, 3.189, 2.677, 3.008, 1.842] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 521.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_256", + "sample document": { + "location identifier": "K7", + "sample identifier": "plate K7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.892, 1.433, 2.831, 1.908, 2.436, 1.476, 1.55, 1.639, 0.733, 1.264, 0.433, 0.411, 0.519, 3.419, 3.136, 1.132, 2.637, 1.338, 1.82, 3.662, 1.963, 0.564, 1.73, 0.733, 1.234, 0.978, 0.031, 3.774, 1.629, 0.597, 3.727, 0.366, 2.293, 2.587, 2.105, 1.922, 2.69, 2.129, 2.817, 3.461, 2.211, 3.288, 0.216, 2.568, 2.794, 1.468, 3.912, 2.465, 3.217, 3.291, 1.274] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_257", + "sample document": { + "location identifier": "K8", + "sample identifier": "plate K8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.85, 0.857, 3.345, 3.878, 1.327, 3.702, 2.098, 0.673, 1.457, 1.445, 1.775, 0.009, 0.136, 1.536, 0.066, 2.117, 1.931, 1.313, 1.214, 2.442, 0.507, 2.521, 2.359, 1.45, 2.675, 0.348, 3.162, 1.938, 3.766, 1.065, 1.565, 0.556, 2.337, 3.323, 1.876, 3.509, 2.947, 2.708, 0.777, 2.219, 0.591, 1.456, 1.359, 2.015, 0.435, 3.278, 0.08, 1.031, 2.727, 3.351, 1.98] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_258", + "sample document": { + "location identifier": "K9", + "sample identifier": "plate K9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.152, 2.003, 0.849, 0.766, 3.329, 2.497, 1.895, 1.203, 0.979, 0.54, 0.16, 0.907, 0.392, 3.88, 1.218, 1.672, 0.813, 3.659, 0.557, 3.169, 3.223, 0.535, 2.995, 1.851, 3.051, 1.162, 0.344, 1.015, 3.396, 0.268, 2.13, 3.21, 0.414, 3.085, 0.412, 2.553, 1.488, 2.556, 2.547, 1.011, 1.052, 1.505, 3.798, 1.679, 0.431, 0.549, 0.966, 2.134, 3.216, 1.606, 3.266] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_259", + "sample document": { + "location identifier": "K10", + "sample identifier": "plate K10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.371, 2.17, 0.181, 2.757, 0.616, 3.007, 2.997, 1.714, 2.166, 2.153, 0.879, 1.806, 0.71, 2.409, 0.949, 0.492, 1.307, 3.467, 2.665, 0.183, 2.256, 1.112, 3.545, 2.116, 1.717, 0.737, 1.315, 1.419, 2.501, 0.195, 2.209, 1.798, 1.789, 1.001, 0.758, 1.039, 0.233, 0.327, 3.795, 3.546, 2.49, 0.842, 0.381, 2.858, 0.173, 3.698, 3.087, 3.269, 3.481, 0.057, 3.659] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_260", + "sample document": { + "location identifier": "K11", + "sample identifier": "plate K11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.667, 0.551, 1.422, 1.01, 0.259, 2.625, 2.064, 1.039, 3.879, 1.691, 1.578, 3.212, 1.971, 3.943, 3.08, 0.017, 3.709, 1.651, 3.909, 0.258, 0.979, 3.671, 3.118, 1.693, 1.414, 0.73, 0.686, 1.943, 2.018, 1.649, 2.046, 1.937, 2.444, 0.535, 3.542, 1.247, 0.367, 3.99, 0.498, 2.414, 2.168, 3.287, 3.915, 1.854, 0.912, 1.629, 2.41, 2.914, 1.092, 3.681, 3.378] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_261", + "sample document": { + "location identifier": "K12", + "sample identifier": "plate K12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.618, 3.572, 3.798, 2.679, 2.995, 1.432, 3.729, 3.596, 3.528, 1.938, 0.121, 3.02, 2.23, 3.645, 3.64, 0.768, 1.435, 0.401, 1.833, 3.649, 3.718, 1.152, 1.495, 2.09, 1.692, 3.756, 1.264, 0.78, 3.784, 2.32, 1.771, 0.851, 2.337, 2.27, 0.428, 2.365, 2.646, 1.855, 0.546, 3.814, 0.637, 0.394, 0.969, 0.476, 2.047, 0.266, 1.685, 2.209, 1.271, 0.861, 0.974] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_262", + "sample document": { + "location identifier": "K13", + "sample identifier": "plate K13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.513, 3.258, 0.031, 3.659, 0.465, 2.076, 1.708, 0.987, 3.239, 0.168, 2.948, 3.811, 1.208, 0.166, 3.269, 0.683, 3.959, 3.217, 1.274, 2.121, 3.579, 3.855, 2.019, 3.011, 3.323, 0.183, 1.019, 0.043, 1.425, 2.07, 3.055, 3.509, 2.923, 1.346, 3.258, 1.593, 2.305, 2.61, 3.963, 0.288, 0.938, 0.868, 1.307, 3.646, 1.689, 0.582, 3.761, 0.309, 2.777, 3.583, 1.725] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_263", + "sample document": { + "location identifier": "K14", + "sample identifier": "plate K14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.992, 3.996, 2.739, 1.395, 2.657, 1.239, 1.019, 0.335, 0.281, 1.057, 1.665, 3.562, 1.168, 1.112, 3.439, 0.887, 3.861, 0.907, 1.676, 2.377, 1.348, 3.253, 0.985, 1.183, 2.711, 2.548, 2.372, 1.322, 2.741, 0.421, 0.709, 1.265, 1.841, 0.345, 0.063, 3.512, 0.184, 3.95, 0.6, 0.353, 1.286, 2.275, 3.681, 3.231, 3.273, 1.305, 0.138, 2.533, 2.25, 3.695, 3.899] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_264", + "sample document": { + "location identifier": "K15", + "sample identifier": "plate K15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.401, 1.101, 1.205, 0.376, 3.738, 3.01, 1.555, 2.684, 0.109, 2.866, 3.697, 1.594, 3.859, 0.347, 0.399, 1.72, 0.823, 1.049, 3.927, 0.703, 3.911, 0.307, 1.322, 1.091, 3.073, 3.572, 1.754, 1.91, 1.405, 2.409, 3.839, 3.072, 3.045, 0.522, 1.308, 0.163, 0.636, 3.968, 0.325, 0.501, 2.628, 1.266, 0.491, 1.487, 1.588, 0.68, 3.821, 2.883, 2.873, 3.584, 3.315] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 551.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_265", + "sample document": { + "location identifier": "K16", + "sample identifier": "plate K16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.484, 2.323, 2.992, 3.988, 3.094, 3.779, 0.114, 1.303, 0.166, 1.256, 3.645, 1.278, 1.7, 3.027, 0.624, 2.549, 3.337, 3.039, 0.236, 1.084, 0.854, 0.724, 3.425, 2.074, 2.645, 3.816, 3.835, 3.502, 2.393, 3.75, 2.87, 3.037, 1.82, 3.093, 2.354, 0.749, 0.053, 0.534, 2.214, 0.384, 0.521, 2.665, 0.158, 3.245, 2.983, 3.987, 2.79, 2.459, 0.964, 2.13, 0.484] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_266", + "sample document": { + "location identifier": "K17", + "sample identifier": "plate K17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.844, 2.637, 2.5, 2.46, 0.759, 2.897, 0.917, 1.342, 3.278, 3.943, 0.612, 2.909, 0.415, 2.385, 0.608, 3.457, 2.606, 0.672, 3.875, 2.495, 2.803, 0.824, 3.851, 0.563, 2.189, 0.565, 0.18, 3.09, 2.658, 1.025, 1.375, 2.538, 0.262, 3.266, 3.025, 0.399, 3.32, 0.633, 1.595, 1.851, 3.135, 3.191, 2.935, 0.44, 3.909, 3.755, 3.743, 0.859, 2.375, 0.529, 0.183] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_267", + "sample document": { + "location identifier": "K18", + "sample identifier": "plate K18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.786, 1.088, 3.635, 1.68, 3.019, 2.785, 1.937, 0.271, 0.194, 2.716, 1.827, 2.684, 2.252, 2.567, 2.074, 2.646, 1.149, 3.359, 0.208, 0.137, 1.973, 3.077, 2.023, 3.36, 3.611, 1.889, 3.41, 0.654, 2.433, 0.822, 3.321, 0.715, 2.128, 0.841, 3.589, 1.449, 0.627, 1.585, 0.005, 1.614, 1.383, 0.361, 1.4, 3.135, 1.308, 0.507, 0.682, 1.873, 1.834, 1.108, 2.593] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_268", + "sample document": { + "location identifier": "K19", + "sample identifier": "plate K19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.499, 2.166, 0.391, 2.21, 2.708, 3.065, 0.275, 2.069, 1.13, 3.375, 1.283, 1.837, 3.372, 3.395, 1.112, 0.555, 1.411, 2.978, 0.624, 2.019, 3.564, 3.354, 2.594, 2.754, 1.611, 1.677, 2.888, 2.051, 3.104, 1.206, 1.537, 2.819, 1.324, 2.228, 1.821, 2.548, 1.736, 2.631, 0.88, 2.384, 0.352, 3.515, 2.875, 2.239, 0.1, 2.523, 2.028, 3.739, 0.196, 3.951, 3.271] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_269", + "sample document": { + "location identifier": "K20", + "sample identifier": "plate K20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.894, 1.21, 3.089, 3.028, 2.145, 3.572, 1.637, 0.598, 1.031, 0.176, 2.223, 2.965, 3.924, 1.837, 2.463, 0.513, 1.143, 1.574, 2.563, 2.818, 2.779, 2.098, 2.24, 1.667, 0.048, 0.478, 0.355, 2.653, 3.087, 3.648, 3.149, 1.855, 3.152, 1.934, 2.643, 1.609, 2.235, 3.2, 3.676, 2.975, 0.098, 2.032, 3.848, 2.207, 2.128, 0.55, 2.95, 0.401, 1.636, 2.01, 0.885] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 558.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_270", + "sample document": { + "location identifier": "K21", + "sample identifier": "plate K21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.165, 1.632, 1.132, 0.492, 0.795, 2.969, 1.422, 2.98, 1.666, 3.217, 2.984, 1.51, 1.383, 1.027, 0.367, 3.812, 1.989, 3.194, 0.854, 2.278, 1.943, 1.897, 3.587, 2.719, 0.746, 2.25, 0.032, 3.538, 3.498, 1.527, 3.953, 1.017, 1.077, 2.763, 0.983, 0.223, 2.019, 1.442, 1.847, 2.639, 0.812, 0.219, 2.009, 3.758, 1.114, 0.522, 2.465, 1.179, 1.76, 0.737, 0.961] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_271", + "sample document": { + "location identifier": "K22", + "sample identifier": "plate K22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.207, 0.782, 3.732, 2.942, 0.267, 2.044, 2.412, 3.745, 2.545, 2.936, 1.883, 3.481, 0.139, 3.263, 1.967, 0.433, 2.62, 0.043, 0.144, 1.792, 0.547, 1.346, 2.214, 1.465, 1.723, 3.888, 3.829, 1.605, 0.224, 3.785, 2.852, 1.777, 2.76, 0.566, 2.746, 0.234, 1.344, 3.82, 0.716, 2.178, 3.607, 1.696, 3.302, 3.702, 2.929, 0.737, 1.87, 0.494, 3.147, 0.088, 3.845] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_272", + "sample document": { + "location identifier": "K23", + "sample identifier": "plate K23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.136, 1.616, 2.944, 0.413, 3.86, 2.567, 2.267, 1.219, 0.378, 2.215, 0.807, 3.52, 2.76, 0.084, 0.105, 0.721, 3.572, 0.517, 1.732, 3.088, 2.799, 3.327, 1.965, 2.185, 2.85, 2.044, 2.511, 2.536, 0.985, 2.017, 3.334, 2.457, 0.135, 3.939, 1.716, 0.161, 3.815, 0.153, 2.885, 1.666, 3.077, 2.601, 0.337, 3.963, 2.799, 2.176, 0.541, 3.618, 2.823, 0.016, 2.298] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_273", + "sample document": { + "location identifier": "K24", + "sample identifier": "plate K24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.977, 1.415, 1.0, 1.045, 1.808, 3.651, 0.759, 1.562, 1.816, 0.055, 3.73, 0.233, 2.361, 2.88, 2.349, 3.384, 2.82, 2.367, 3.944, 0.905, 3.418, 1.632, 0.065, 0.01, 0.197, 2.989, 2.001, 3.386, 0.674, 1.502, 2.893, 3.712, 0.968, 3.719, 3.357, 1.042, 3.135, 2.894, 3.907, 0.51, 3.056, 2.591, 1.068, 1.611, 3.346, 2.367, 1.976, 1.082, 0.449, 2.791, 1.721] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_275", + "sample document": { + "location identifier": "L1", + "sample identifier": "plate L1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.251, 2.878, 3.111, 2.879, 2.344, 1.349, 0.989, 0.848, 2.819, 1.649, 1.373, 0.887, 0.313, 1.162, 0.017, 3.265, 2.641, 3.523, 1.307, 0.249, 3.926, 2.459, 3.434, 1.848, 0.827, 0.563, 2.454, 0.663, 1.829, 1.013, 0.919, 2.936, 1.883, 3.781, 1.641, 0.834, 1.856, 0.84, 1.012, 3.693, 2.146, 2.045, 1.088, 2.86, 1.683, 1.703, 0.755, 0.448, 3.328, 3.102, 3.335] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_276", + "sample document": { + "location identifier": "L2", + "sample identifier": "plate L2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.559, 3.142, 2.541, 1.794, 2.792, 3.444, 1.262, 2.051, 1.781, 2.895, 0.325, 3.018, 1.805, 0.729, 2.436, 3.004, 0.531, 3.521, 3.183, 1.408, 1.8, 2.511, 1.614, 2.103, 1.88, 1.37, 0.573, 0.165, 3.124, 3.808, 2.005, 1.335, 2.726, 1.677, 3.36, 3.794, 3.341, 1.986, 2.849, 1.39, 0.593, 2.788, 3.231, 0.798, 1.82, 3.026, 3.282, 2.131, 3.246, 2.699, 0.223] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 555.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_277", + "sample document": { + "location identifier": "L3", + "sample identifier": "plate L3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.927, 0.145, 1.694, 1.534, 3.048, 1.528, 0.438, 3.914, 1.421, 2.87, 1.097, 2.927, 1.973, 0.889, 2.99, 0.291, 0.128, 1.369, 2.642, 3.662, 2.544, 0.671, 1.793, 0.814, 3.011, 3.279, 0.816, 0.282, 2.853, 2.087, 2.442, 0.918, 0.424, 3.584, 1.078, 1.189, 1.032, 0.143, 0.312, 2.266, 2.902, 2.072, 1.428, 2.519, 3.496, 3.861, 1.258, 3.908, 2.83, 2.735, 3.154] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_278", + "sample document": { + "location identifier": "L4", + "sample identifier": "plate L4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.761, 0.604, 3.037, 1.678, 0.255, 2.351, 0.879, 2.522, 3.768, 0.711, 0.156, 1.06, 3.333, 0.427, 0.179, 2.502, 2.388, 3.81, 1.8, 3.258, 3.984, 1.057, 0.376, 0.759, 0.472, 3.243, 3.274, 1.318, 3.15, 2.021, 0.907, 1.452, 0.118, 2.933, 1.681, 0.313, 1.387, 1.905, 0.823, 2.838, 0.153, 1.62, 0.543, 1.554, 2.746, 1.011, 2.094, 2.091, 3.316, 1.358, 2.869] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 540.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_279", + "sample document": { + "location identifier": "L5", + "sample identifier": "plate L5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.098, 1.029, 3.476, 3.169, 3.703, 0.228, 2.277, 1.206, 1.011, 3.077, 3.56, 3.372, 1.746, 3.804, 2.703, 0.942, 0.4, 2.746, 3.865, 1.115, 0.483, 2.987, 2.961, 3.105, 2.364, 0.514, 2.821, 2.012, 3.46, 1.149, 1.182, 2.002, 1.791, 3.152, 0.808, 0.422, 0.642, 3.763, 1.978, 0.085, 3.109, 0.699, 3.811, 3.761, 0.593, 2.248, 2.797, 1.749, 0.043, 0.069, 1.694] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_280", + "sample document": { + "location identifier": "L6", + "sample identifier": "plate L6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.345, 3.45, 0.243, 2.386, 1.111, 2.068, 0.371, 0.805, 3.189, 1.406, 0.265, 1.745, 3.862, 1.894, 1.558, 1.58, 2.594, 2.996, 2.281, 0.3, 0.636, 0.768, 3.78, 2.005, 3.783, 3.175, 3.2, 2.512, 0.116, 1.716, 1.072, 1.969, 3.39, 3.454, 1.836, 2.551, 1.548, 0.765, 3.697, 2.354, 0.27, 2.958, 2.789, 2.679, 2.844, 2.953, 3.948, 1.866, 3.034, 0.667, 0.202] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_281", + "sample document": { + "location identifier": "L7", + "sample identifier": "plate L7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.753, 1.761, 3.769, 1.058, 2.577, 3.67, 2.237, 2.602, 1.936, 2.867, 1.859, 0.688, 1.472, 0.333, 2.295, 2.355, 0.408, 0.057, 3.006, 0.031, 1.828, 3.299, 3.926, 0.029, 1.677, 1.978, 1.101, 3.16, 0.83, 3.226, 1.333, 3.477, 3.448, 1.513, 2.319, 0.207, 3.621, 2.396, 3.259, 2.881, 3.31, 2.163, 1.76, 3.486, 2.411, 2.269, 1.316, 2.345, 0.549, 0.598, 3.54] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_282", + "sample document": { + "location identifier": "L8", + "sample identifier": "plate L8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.808, 0.027, 0.636, 2.374, 3.454, 1.835, 3.74, 3.38, 0.598, 2.569, 3.077, 1.771, 2.709, 1.533, 2.381, 1.24, 3.958, 2.014, 2.087, 2.734, 2.011, 0.798, 0.125, 0.721, 3.665, 1.538, 0.439, 1.617, 3.407, 0.662, 2.756, 2.611, 0.232, 3.685, 3.525, 3.449, 2.812, 3.139, 2.864, 2.372, 3.88, 3.016, 2.661, 0.312, 0.233, 0.391, 3.051, 1.953, 0.029, 1.029, 1.358] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_283", + "sample document": { + "location identifier": "L9", + "sample identifier": "plate L9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.33, 2.461, 1.863, 1.529, 1.01, 3.902, 3.914, 2.708, 1.916, 1.395, 2.122, 3.972, 3.936, 3.812, 0.466, 1.539, 3.023, 2.008, 2.932, 2.428, 0.818, 3.149, 3.714, 2.853, 2.995, 2.136, 3.813, 0.487, 3.274, 2.486, 2.486, 1.587, 2.378, 3.303, 2.425, 0.149, 2.368, 2.156, 2.514, 3.547, 2.897, 0.431, 0.948, 0.977, 1.757, 3.043, 2.725, 0.499, 3.766, 2.851, 0.027] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_284", + "sample document": { + "location identifier": "L10", + "sample identifier": "plate L10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.944, 1.097, 2.601, 0.539, 1.18, 2.746, 3.01, 2.533, 2.873, 0.088, 3.427, 3.433, 3.429, 2.908, 0.535, 1.594, 0.632, 1.387, 0.317, 3.17, 0.867, 3.493, 3.384, 3.53, 0.387, 2.201, 2.737, 1.095, 3.952, 3.411, 3.314, 0.72, 0.422, 2.458, 2.541, 0.489, 3.776, 2.763, 1.244, 1.402, 3.358, 3.622, 3.641, 3.459, 3.47, 0.997, 1.518, 2.068, 1.222, 1.448, 2.092] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_285", + "sample document": { + "location identifier": "L11", + "sample identifier": "plate L11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.111, 3.449, 3.681, 3.16, 0.451, 1.713, 3.07, 0.152, 2.979, 0.009, 1.915, 2.581, 3.461, 0.773, 2.706, 3.01, 0.971, 0.367, 0.045, 1.817, 1.869, 0.142, 2.914, 3.812, 1.244, 3.852, 3.925, 0.06, 3.389, 0.682, 0.669, 3.872, 2.503, 1.319, 0.203, 1.271, 0.741, 3.297, 2.09, 2.776, 0.706, 2.61, 2.265, 1.393, 1.442, 1.04, 0.179, 2.685, 0.764, 1.986, 0.547] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 521.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_286", + "sample document": { + "location identifier": "L12", + "sample identifier": "plate L12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.701, 1.176, 3.631, 0.223, 2.968, 0.535, 3.868, 1.916, 0.599, 1.787, 3.009, 0.763, 2.296, 3.34, 2.042, 0.078, 2.142, 0.57, 1.435, 2.269, 1.673, 2.276, 1.268, 1.111, 3.258, 1.877, 1.521, 2.369, 0.203, 3.672, 1.24, 3.296, 1.402, 0.134, 2.967, 2.695, 2.872, 1.096, 1.234, 0.736, 0.873, 1.381, 1.491, 0.989, 1.697, 1.847, 3.968, 2.053, 3.4, 0.961, 2.037] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_287", + "sample document": { + "location identifier": "L13", + "sample identifier": "plate L13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.114, 3.329, 3.717, 2.874, 3.424, 3.908, 2.52, 0.964, 1.091, 3.013, 1.498, 1.712, 0.927, 0.547, 3.712, 3.36, 2.162, 0.372, 3.346, 1.206, 1.045, 3.336, 0.698, 1.396, 0.292, 0.785, 0.279, 3.413, 1.411, 1.908, 3.468, 2.969, 3.241, 1.634, 3.125, 3.967, 1.685, 1.26, 3.542, 2.787, 0.351, 0.131, 0.142, 1.722, 3.374, 3.668, 0.563, 0.441, 1.984, 2.486, 1.806] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 525.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_288", + "sample document": { + "location identifier": "L14", + "sample identifier": "plate L14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.68, 0.053, 3.755, 0.992, 2.778, 2.63, 2.321, 2.582, 2.639, 3.628, 3.106, 3.553, 3.183, 3.545, 2.529, 2.47, 3.292, 1.422, 3.745, 1.675, 0.901, 0.829, 0.558, 0.854, 0.914, 3.194, 2.976, 2.021, 0.623, 0.221, 3.837, 1.429, 2.925, 0.102, 1.787, 2.915, 3.486, 0.642, 0.346, 1.337, 3.363, 2.677, 0.903, 3.159, 1.245, 0.578, 0.959, 2.177, 0.844, 1.197, 1.27] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 532.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_289", + "sample document": { + "location identifier": "L15", + "sample identifier": "plate L15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.019, 2.239, 0.81, 0.904, 0.851, 3.495, 2.9, 0.077, 3.584, 3.653, 0.299, 1.958, 2.417, 3.79, 1.676, 0.628, 3.08, 1.757, 3.614, 2.984, 2.65, 1.075, 2.407, 2.311, 2.223, 3.925, 1.399, 3.608, 0.336, 2.234, 0.799, 1.177, 3.425, 2.95, 0.818, 3.19, 2.114, 3.197, 0.936, 3.42, 0.585, 0.564, 0.762, 1.684, 3.064, 0.718, 2.486, 3.368, 3.569, 3.949, 1.878] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_290", + "sample document": { + "location identifier": "L16", + "sample identifier": "plate L16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.42, 1.23, 2.213, 2.62, 1.943, 3.831, 2.498, 2.68, 0.925, 2.095, 3.291, 3.741, 1.349, 2.854, 3.121, 2.533, 3.466, 2.972, 2.486, 2.513, 3.882, 0.82, 0.193, 2.398, 2.086, 0.313, 0.723, 3.247, 1.505, 1.439, 2.031, 0.039, 0.386, 0.356, 0.378, 3.947, 1.212, 0.33, 2.874, 3.358, 3.616, 0.517, 0.011, 1.324, 1.294, 0.822, 3.412, 2.829, 3.942, 2.185, 3.02] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_291", + "sample document": { + "location identifier": "L17", + "sample identifier": "plate L17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.395, 1.083, 1.436, 1.995, 3.599, 1.036, 3.814, 0.534, 1.63, 3.108, 3.251, 1.175, 3.485, 0.063, 3.252, 3.355, 0.993, 2.475, 3.174, 1.32, 3.135, 0.098, 3.127, 2.897, 3.365, 0.809, 2.869, 1.104, 1.263, 0.901, 1.893, 3.304, 3.319, 2.419, 1.635, 2.956, 2.949, 2.36, 0.779, 2.91, 1.397, 3.796, 1.244, 0.249, 0.364, 3.341, 0.525, 1.26, 2.041, 1.467, 2.418] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_292", + "sample document": { + "location identifier": "L18", + "sample identifier": "plate L18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.354, 0.767, 0.864, 3.884, 0.296, 1.955, 2.539, 2.63, 2.79, 2.167, 2.71, 3.27, 0.728, 1.215, 3.946, 1.856, 1.066, 2.427, 0.296, 0.405, 2.633, 1.696, 0.264, 3.923, 3.339, 2.854, 2.878, 2.532, 0.023, 0.283, 1.608, 3.062, 3.795, 2.483, 1.539, 2.536, 2.454, 2.534, 1.339, 1.0, 0.409, 3.73, 1.989, 0.743, 2.687, 0.525, 0.515, 3.034, 0.417, 1.485, 3.459] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_293", + "sample document": { + "location identifier": "L19", + "sample identifier": "plate L19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.833, 1.745, 1.061, 3.785, 2.657, 0.503, 0.941, 0.545, 1.442, 3.077, 0.007, 2.606, 2.506, 0.559, 3.647, 3.475, 2.245, 3.675, 1.41, 3.401, 2.531, 1.088, 3.295, 3.995, 2.902, 3.707, 3.52, 1.235, 2.813, 2.338, 3.843, 2.114, 2.537, 0.824, 2.774, 1.317, 2.734, 2.697, 2.881, 2.032, 1.512, 1.989, 3.896, 1.923, 0.402, 1.123, 3.482, 0.184, 3.04, 1.05, 2.27] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 543.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_294", + "sample document": { + "location identifier": "L20", + "sample identifier": "plate L20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.358, 3.007, 2.084, 0.927, 1.744, 2.45, 1.065, 0.882, 2.95, 0.983, 3.706, 1.731, 3.104, 3.233, 1.892, 0.069, 1.682, 1.784, 2.33, 0.74, 3.547, 0.794, 3.377, 1.888, 0.541, 1.192, 1.372, 3.593, 1.779, 0.224, 3.336, 2.194, 1.763, 0.067, 0.484, 3.106, 0.453, 3.896, 1.03, 2.866, 1.668, 1.815, 3.93, 1.049, 1.806, 0.258, 0.791, 2.689, 2.51, 1.054, 1.799] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_295", + "sample document": { + "location identifier": "L21", + "sample identifier": "plate L21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.399, 0.71, 0.309, 2.722, 2.564, 3.63, 0.196, 0.385, 0.551, 1.077, 1.472, 3.103, 2.725, 1.646, 1.511, 3.967, 3.036, 2.748, 2.785, 3.615, 1.785, 0.753, 3.463, 3.071, 1.732, 0.863, 2.327, 0.081, 0.283, 0.4, 2.683, 1.082, 0.724, 2.425, 0.936, 1.484, 1.454, 1.345, 1.92, 3.476, 0.257, 3.511, 0.479, 1.789, 0.196, 2.712, 1.204, 3.402, 0.295, 0.29, 1.755] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_296", + "sample document": { + "location identifier": "L22", + "sample identifier": "plate L22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.94, 3.724, 1.438, 0.013, 1.646, 1.247, 1.237, 0.99, 1.701, 1.302, 0.114, 0.101, 0.15, 2.394, 0.389, 2.378, 0.3, 0.709, 0.026, 2.513, 1.691, 0.828, 3.309, 3.358, 2.274, 0.274, 1.673, 2.875, 3.02, 3.658, 2.924, 3.786, 3.993, 2.645, 2.742, 1.358, 3.286, 2.411, 3.29, 0.237, 0.216, 0.354, 0.219, 2.173, 0.143, 3.409, 0.328, 3.394, 3.807, 0.334, 0.904] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_297", + "sample document": { + "location identifier": "L23", + "sample identifier": "plate L23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.693, 0.268, 1.776, 0.063, 3.112, 0.414, 2.079, 1.739, 1.372, 3.573, 2.362, 1.97, 2.042, 2.377, 0.327, 0.108, 1.504, 3.652, 3.031, 3.091, 1.888, 1.419, 3.789, 2.296, 1.336, 0.609, 1.135, 3.215, 2.864, 3.945, 2.279, 3.068, 2.685, 2.754, 0.231, 3.518, 2.216, 2.582, 3.63, 0.943, 1.206, 0.672, 1.918, 0.664, 1.854, 2.384, 2.176, 3.795, 3.815, 3.3, 2.823] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_298", + "sample document": { + "location identifier": "L24", + "sample identifier": "plate L24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.742, 0.775, 1.242, 3.015, 1.273, 0.478, 3.479, 2.726, 2.502, 3.279, 2.863, 2.874, 1.426, 1.293, 3.293, 3.284, 3.288, 2.146, 0.808, 1.892, 2.922, 0.021, 2.087, 1.884, 1.216, 3.5, 3.125, 0.442, 2.952, 2.433, 1.34, 3.4, 3.564, 1.121, 2.536, 2.292, 1.443, 3.738, 2.957, 3.04, 2.736, 3.855, 1.127, 1.664, 2.343, 1.798, 0.491, 3.37, 2.561, 3.1, 2.887] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_300", + "sample document": { + "location identifier": "M1", + "sample identifier": "plate M1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.649, 3.007, 1.408, 3.901, 3.72, 2.687, 3.357, 1.799, 1.773, 1.353, 3.037, 3.774, 0.069, 1.938, 3.463, 3.31, 0.305, 2.756, 1.001, 1.84, 3.549, 3.188, 1.768, 3.155, 3.067, 2.894, 0.423, 3.541, 3.418, 3.009, 3.754, 1.88, 3.851, 3.545, 3.69, 0.392, 2.155, 1.22, 2.816, 3.604, 2.085, 1.939, 1.184, 1.686, 3.698, 0.08, 1.057, 3.725, 2.879, 2.487, 0.186] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_301", + "sample document": { + "location identifier": "M2", + "sample identifier": "plate M2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.613, 1.559, 1.259, 3.338, 2.461, 1.239, 2.252, 0.833, 0.826, 2.264, 3.815, 2.38, 2.764, 1.598, 1.156, 3.923, 0.524, 2.248, 3.071, 1.154, 3.085, 3.94, 1.396, 3.754, 1.609, 2.003, 0.081, 3.456, 2.987, 1.836, 0.698, 0.662, 0.93, 2.822, 3.14, 0.32, 2.591, 0.206, 1.229, 3.152, 3.902, 0.387, 1.989, 1.34, 2.27, 3.558, 2.42, 0.088, 2.542, 0.156, 0.533] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_302", + "sample document": { + "location identifier": "M3", + "sample identifier": "plate M3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.476, 3.807, 1.333, 1.1, 0.673, 0.163, 1.504, 1.728, 0.457, 1.158, 2.796, 1.845, 2.99, 1.566, 3.153, 1.45, 3.941, 2.458, 0.835, 1.331, 0.317, 1.019, 3.918, 1.251, 2.698, 1.95, 0.056, 1.484, 2.051, 3.583, 3.993, 0.914, 2.83, 1.302, 3.221, 0.854, 3.596, 1.721, 2.467, 0.157, 1.087, 2.478, 0.772, 1.994, 1.106, 2.541, 2.999, 3.773, 3.117, 2.108, 2.479] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_303", + "sample document": { + "location identifier": "M4", + "sample identifier": "plate M4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.629, 1.706, 2.825, 0.215, 0.457, 3.889, 0.081, 2.402, 2.722, 0.106, 0.02, 3.677, 0.873, 1.165, 1.881, 3.015, 1.687, 2.344, 2.298, 1.853, 2.219, 3.99, 0.678, 0.244, 1.839, 0.246, 1.923, 0.144, 0.156, 2.95, 0.282, 2.367, 3.942, 1.104, 2.363, 3.208, 0.004, 1.087, 2.763, 0.964, 3.515, 3.319, 3.744, 0.05, 1.066, 2.801, 3.898, 0.829, 3.225, 3.526, 1.312] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_304", + "sample document": { + "location identifier": "M5", + "sample identifier": "plate M5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.428, 0.818, 0.254, 0.259, 1.639, 1.028, 2.581, 2.376, 0.211, 1.966, 3.936, 2.245, 3.771, 3.824, 1.652, 3.734, 3.769, 2.802, 2.673, 3.01, 0.599, 3.581, 1.333, 2.338, 2.9, 0.245, 0.627, 3.177, 3.038, 0.348, 1.094, 0.919, 0.63, 1.638, 2.853, 1.548, 3.688, 0.844, 0.723, 2.18, 1.423, 2.711, 2.552, 2.998, 3.578, 1.073, 3.973, 0.226, 3.413, 3.066, 0.129] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_305", + "sample document": { + "location identifier": "M6", + "sample identifier": "plate M6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.027, 0.551, 0.516, 0.712, 1.847, 3.485, 1.916, 1.359, 1.393, 0.4, 3.403, 3.337, 3.862, 0.871, 3.017, 1.615, 2.133, 0.97, 0.104, 0.046, 2.924, 2.078, 0.493, 1.586, 1.888, 1.029, 2.334, 2.76, 1.827, 0.272, 0.4, 3.763, 3.971, 0.219, 3.067, 0.368, 0.114, 0.925, 1.006, 2.063, 1.771, 3.485, 3.33, 1.779, 2.019, 3.373, 2.689, 2.127, 0.561, 3.457, 1.84] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 531.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_306", + "sample document": { + "location identifier": "M7", + "sample identifier": "plate M7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.256, 3.309, 3.02, 1.204, 3.949, 0.058, 2.929, 2.823, 0.818, 1.15, 3.156, 3.532, 1.121, 3.999, 3.64, 3.366, 3.643, 1.804, 2.648, 1.5, 1.207, 3.963, 2.04, 2.274, 3.439, 2.747, 2.713, 3.566, 2.515, 2.339, 0.207, 2.198, 2.369, 2.432, 1.144, 0.453, 0.95, 3.014, 3.117, 0.309, 1.185, 2.101, 0.188, 0.912, 2.614, 3.952, 2.208, 1.779, 2.379, 0.007, 3.045] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 534.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_307", + "sample document": { + "location identifier": "M8", + "sample identifier": "plate M8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.322, 1.912, 1.957, 0.632, 3.292, 1.269, 0.745, 1.765, 1.201, 1.345, 3.363, 0.308, 2.478, 0.943, 0.957, 1.163, 2.689, 2.855, 3.186, 2.415, 0.629, 2.686, 2.339, 0.315, 3.105, 3.774, 1.127, 3.659, 3.486, 0.539, 0.933, 1.186, 2.508, 3.293, 3.884, 0.286, 0.411, 1.799, 1.851, 3.184, 0.204, 1.249, 1.916, 2.963, 1.822, 1.793, 1.71, 3.969, 1.657, 2.789, 3.519] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_308", + "sample document": { + "location identifier": "M9", + "sample identifier": "plate M9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.924, 3.193, 1.591, 2.416, 1.635, 3.572, 1.642, 1.527, 3.518, 0.141, 1.085, 2.278, 0.661, 0.411, 2.176, 1.8, 3.184, 1.058, 0.67, 0.751, 0.89, 1.004, 0.002, 2.21, 3.38, 0.77, 3.375, 2.493, 1.312, 2.064, 1.158, 2.002, 0.696, 1.02, 2.009, 1.993, 0.916, 0.877, 2.248, 0.714, 2.769, 0.272, 2.333, 3.042, 3.119, 2.97, 1.254, 2.551, 3.645, 3.992, 2.526] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_309", + "sample document": { + "location identifier": "M10", + "sample identifier": "plate M10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.91, 0.986, 2.038, 2.628, 1.92, 3.19, 3.381, 3.036, 0.865, 0.196, 3.148, 0.214, 1.453, 2.983, 3.083, 1.582, 3.641, 2.402, 0.182, 0.883, 2.306, 2.81, 3.956, 1.982, 0.618, 2.67, 0.959, 3.091, 0.41, 3.515, 0.823, 2.847, 1.319, 3.538, 2.248, 1.016, 2.658, 2.391, 0.088, 2.802, 1.535, 1.841, 1.382, 0.517, 3.62, 0.057, 0.879, 0.059, 0.035, 1.387, 1.612] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_310", + "sample document": { + "location identifier": "M11", + "sample identifier": "plate M11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.149, 3.463, 3.108, 0.219, 0.1, 1.03, 0.056, 2.01, 3.249, 2.231, 0.289, 2.625, 1.35, 3.372, 0.301, 2.895, 1.915, 0.734, 2.067, 2.923, 1.25, 2.313, 1.379, 3.348, 0.465, 1.427, 3.438, 2.361, 0.56, 1.791, 0.9, 3.055, 3.022, 1.902, 0.674, 3.383, 2.21, 3.319, 2.147, 3.986, 2.602, 0.38, 0.839, 0.571, 1.245, 3.215, 0.032, 1.145, 3.319, 1.162, 2.964] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_311", + "sample document": { + "location identifier": "M12", + "sample identifier": "plate M12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.324, 1.968, 2.463, 0.362, 1.835, 2.083, 3.76, 3.754, 2.673, 1.591, 1.694, 1.45, 1.458, 1.331, 1.233, 3.603, 3.447, 2.697, 0.917, 0.684, 2.596, 2.586, 2.08, 0.321, 0.87, 1.474, 0.808, 2.102, 1.249, 1.394, 2.293, 3.042, 3.398, 2.826, 1.575, 1.086, 0.558, 1.54, 2.839, 1.3, 2.45, 3.564, 3.474, 2.394, 0.907, 2.929, 3.381, 3.24, 0.011, 3.612, 0.584] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_312", + "sample document": { + "location identifier": "M13", + "sample identifier": "plate M13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.447, 2.401, 0.478, 0.368, 0.737, 3.887, 2.142, 3.491, 0.361, 1.274, 1.657, 2.504, 1.278, 3.297, 2.652, 2.052, 2.631, 3.755, 0.147, 3.044, 1.907, 3.858, 3.617, 2.233, 3.031, 3.111, 3.686, 3.414, 1.94, 2.093, 1.568, 2.09, 1.636, 0.809, 3.846, 0.64, 2.92, 2.458, 0.837, 1.199, 2.416, 2.048, 2.478, 0.025, 0.793, 1.06, 2.196, 3.096, 2.254, 0.877, 0.75] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_313", + "sample document": { + "location identifier": "M14", + "sample identifier": "plate M14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.484, 3.864, 0.568, 2.677, 2.588, 2.784, 2.244, 1.337, 1.625, 0.201, 2.727, 1.55, 2.268, 3.706, 3.566, 0.867, 0.468, 3.451, 2.011, 3.131, 0.172, 2.918, 2.948, 0.627, 3.858, 1.38, 3.591, 1.44, 1.97, 0.915, 0.589, 1.159, 1.063, 1.342, 2.084, 2.225, 1.068, 2.132, 1.258, 1.856, 0.675, 1.121, 3.211, 0.997, 3.688, 0.497, 0.21, 0.319, 1.226, 0.192, 1.728] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_314", + "sample document": { + "location identifier": "M15", + "sample identifier": "plate M15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.645, 0.243, 1.745, 0.577, 0.565, 0.916, 3.94, 2.818, 1.207, 3.192, 0.803, 3.366, 0.71, 3.612, 1.568, 0.487, 0.925, 1.621, 1.34, 3.798, 2.335, 2.193, 0.154, 2.456, 3.051, 3.706, 1.95, 0.939, 3.361, 1.17, 3.272, 0.213, 1.778, 3.187, 0.943, 0.916, 3.317, 0.765, 1.519, 1.309, 1.128, 3.314, 0.05, 2.664, 3.871, 1.754, 2.501, 1.385, 2.119, 0.009, 3.284] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_315", + "sample document": { + "location identifier": "M16", + "sample identifier": "plate M16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.697, 3.886, 0.393, 3.392, 1.452, 0.088, 3.289, 1.526, 0.858, 2.966, 3.0, 3.457, 0.037, 3.919, 0.59, 1.588, 1.523, 2.668, 0.652, 1.17, 0.159, 0.102, 0.031, 2.67, 3.021, 2.142, 1.49, 2.584, 1.296, 1.205, 0.565, 2.819, 3.351, 1.885, 0.575, 0.327, 1.384, 3.794, 3.491, 0.827, 0.028, 3.239, 0.66, 2.343, 2.128, 3.857, 0.013, 2.744, 3.281, 0.166, 0.977] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_316", + "sample document": { + "location identifier": "M17", + "sample identifier": "plate M17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.716, 1.467, 2.839, 3.124, 2.594, 3.854, 1.723, 0.371, 3.309, 2.597, 0.705, 0.229, 3.652, 2.4, 0.18, 0.106, 2.151, 3.344, 0.262, 0.203, 1.728, 3.177, 3.824, 1.142, 0.92, 3.442, 1.688, 0.541, 3.164, 2.129, 2.745, 3.302, 1.13, 0.228, 1.849, 1.352, 0.511, 2.76, 1.98, 0.473, 3.661, 3.423, 0.181, 2.229, 3.322, 3.009, 1.007, 3.942, 1.947, 3.75, 1.861] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_317", + "sample document": { + "location identifier": "M18", + "sample identifier": "plate M18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.4, 3.019, 3.962, 3.248, 3.538, 1.642, 1.697, 2.204, 3.152, 2.166, 1.181, 1.207, 1.179, 3.852, 1.402, 3.099, 3.424, 0.551, 2.828, 3.594, 3.391, 1.363, 3.789, 0.542, 2.305, 2.996, 1.595, 1.819, 1.911, 2.435, 1.745, 2.594, 3.413, 0.268, 3.345, 0.283, 1.167, 0.979, 2.31, 3.71, 2.814, 0.556, 2.828, 2.306, 2.479, 2.216, 3.002, 2.377, 1.92, 3.91, 1.582] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 523.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_318", + "sample document": { + "location identifier": "M19", + "sample identifier": "plate M19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.391, 3.118, 0.156, 2.47, 2.037, 3.229, 3.42, 0.942, 0.542, 0.047, 3.877, 0.292, 0.717, 0.42, 2.587, 1.793, 0.91, 0.506, 1.118, 1.932, 2.445, 2.24, 3.118, 0.78, 2.834, 2.534, 1.482, 2.063, 0.089, 3.994, 3.217, 3.898, 2.001, 0.852, 2.354, 3.475, 3.256, 1.798, 1.308, 1.054, 1.746, 0.036, 1.768, 3.662, 2.936, 0.263, 2.111, 1.886, 3.891, 0.422, 2.091] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_320", + "sample document": { + "location identifier": "M21", + "sample identifier": "plate M21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.819, 0.779, 1.885, 2.978, 2.672, 0.737, 1.792, 0.729, 0.679, 0.545, 1.532, 1.065, 3.079, 2.15, 3.186, 1.186, 2.645, 3.483, 0.882, 2.267, 2.15, 0.863, 3.637, 2.656, 0.95, 1.392, 0.757, 3.796, 3.225, 3.251, 0.622, 2.886, 0.598, 2.175, 3.776, 1.391, 1.781, 2.924, 2.673, 2.358, 2.23, 0.985, 0.523, 2.929, 2.347, 1.097, 2.726, 1.156, 1.202, 1.996, 2.574] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_321", + "sample document": { + "location identifier": "M22", + "sample identifier": "plate M22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.349, 2.074, 3.704, 0.096, 2.956, 1.142, 3.228, 2.028, 1.28, 3.98, 1.996, 1.503, 1.428, 3.922, 2.646, 0.466, 0.903, 2.373, 1.794, 3.404, 3.72, 0.81, 2.523, 0.037, 1.164, 0.34, 0.707, 0.309, 3.853, 2.665, 3.6, 2.593, 1.228, 0.676, 1.273, 0.811, 0.893, 2.079, 0.82, 0.248, 2.552, 0.896, 1.393, 2.378, 0.234, 3.481, 3.095, 3.007, 3.7, 0.63, 1.822] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_322", + "sample document": { + "location identifier": "M23", + "sample identifier": "plate M23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.783, 3.408, 2.591, 2.853, 2.538, 3.55, 3.667, 2.932, 2.616, 0.435, 2.919, 2.174, 2.614, 0.38, 3.403, 0.275, 0.751, 2.649, 1.834, 3.573, 2.824, 1.553, 1.545, 0.852, 2.824, 3.417, 0.145, 3.802, 1.683, 1.244, 1.7, 0.608, 3.223, 0.843, 0.817, 3.184, 2.636, 1.822, 2.734, 1.261, 1.225, 3.146, 2.203, 3.813, 3.633, 2.721, 2.778, 1.997, 0.83, 3.206, 2.343] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_323", + "sample document": { + "location identifier": "M24", + "sample identifier": "plate M24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.357, 1.866, 1.056, 2.998, 1.229, 1.862, 1.739, 0.029, 3.121, 3.404, 3.864, 1.249, 1.371, 2.735, 2.311, 2.951, 1.771, 3.563, 0.218, 1.638, 2.929, 3.914, 0.573, 2.347, 3.677, 3.35, 1.732, 1.218, 0.102, 0.638, 2.147, 2.972, 2.476, 2.901, 1.342, 2.742, 2.166, 1.844, 3.587, 1.322, 0.896, 1.793, 3.613, 1.856, 1.361, 1.897, 0.832, 1.078, 1.322, 3.77, 1.007] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_325", + "sample document": { + "location identifier": "N1", + "sample identifier": "plate N1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.434, 0.612, 1.568, 3.414, 0.443, 1.292, 2.709, 3.32, 1.879, 0.129, 0.521, 3.926, 2.482, 1.257, 0.892, 2.772, 2.469, 1.392, 3.568, 0.785, 3.926, 3.975, 2.895, 0.741, 1.135, 0.3, 2.717, 0.986, 1.779, 2.518, 0.653, 3.896, 0.332, 3.63, 3.713, 2.359, 0.908, 3.487, 0.898, 1.449, 3.456, 2.523, 1.708, 1.193, 0.375, 1.866, 1.13, 0.599, 0.468, 3.125, 2.362] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_326", + "sample document": { + "location identifier": "N2", + "sample identifier": "plate N2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.685, 1.753, 2.984, 1.081, 2.458, 1.716, 0.827, 2.278, 0.142, 2.575, 1.722, 1.541, 3.361, 3.475, 0.624, 3.593, 2.852, 1.543, 2.532, 1.864, 2.982, 0.493, 2.119, 1.328, 1.402, 2.267, 1.702, 0.365, 3.269, 3.17, 2.117, 0.518, 2.654, 0.155, 0.967, 2.142, 1.348, 2.549, 1.254, 0.643, 0.081, 1.209, 0.756, 2.873, 1.734, 0.982, 2.346, 1.717, 3.751, 2.272, 2.278] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 520.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_327", + "sample document": { + "location identifier": "N3", + "sample identifier": "plate N3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.055, 1.935, 1.261, 3.379, 3.192, 3.634, 1.656, 3.678, 0.191, 0.013, 0.461, 3.008, 0.972, 0.457, 1.204, 2.887, 3.205, 2.508, 2.481, 2.245, 0.303, 0.289, 1.889, 1.783, 1.773, 3.737, 3.245, 3.594, 0.42, 3.92, 3.985, 0.614, 0.996, 0.892, 3.062, 2.582, 1.393, 0.776, 1.775, 2.508, 3.692, 2.87, 1.063, 0.629, 3.619, 2.2, 3.784, 2.416, 0.529, 2.095, 3.141] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_328", + "sample document": { + "location identifier": "N4", + "sample identifier": "plate N4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.209, 1.269, 0.026, 1.974, 2.766, 0.045, 3.477, 1.606, 3.454, 0.389, 2.061, 3.258, 0.27, 0.028, 3.847, 2.012, 0.08, 1.395, 2.621, 1.494, 2.429, 0.732, 3.973, 2.553, 1.432, 3.225, 1.26, 2.163, 3.573, 3.953, 0.829, 3.065, 2.325, 0.779, 0.776, 3.345, 0.969, 2.917, 0.295, 2.537, 1.915, 3.17, 2.321, 2.118, 1.63, 3.612, 0.792, 0.6, 3.772, 0.188, 3.704] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_329", + "sample document": { + "location identifier": "N5", + "sample identifier": "plate N5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.02, 1.907, 0.601, 0.712, 2.476, 1.295, 1.473, 0.541, 3.54, 2.785, 1.313, 2.033, 3.501, 3.56, 2.996, 0.933, 3.491, 3.252, 0.502, 1.042, 1.162, 1.099, 0.084, 3.578, 3.259, 2.41, 1.854, 0.923, 1.82, 2.433, 0.659, 2.391, 3.385, 0.249, 3.808, 1.157, 1.723, 0.067, 2.299, 2.049, 3.496, 2.375, 0.755, 3.751, 0.601, 1.136, 2.82, 2.558, 2.633, 2.678, 1.301] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_330", + "sample document": { + "location identifier": "N6", + "sample identifier": "plate N6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.348, 3.269, 3.145, 2.541, 3.92, 1.822, 1.022, 1.453, 0.066, 3.44, 0.549, 2.72, 1.106, 2.126, 2.921, 2.648, 3.251, 3.751, 1.838, 3.209, 3.423, 0.952, 2.452, 1.545, 2.786, 0.343, 0.332, 2.977, 2.122, 3.59, 3.296, 2.289, 3.142, 1.131, 3.31, 3.121, 0.239, 1.707, 3.887, 3.335, 0.701, 2.614, 2.233, 2.609, 2.946, 3.655, 3.648, 1.625, 1.679, 2.488, 3.568] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_331", + "sample document": { + "location identifier": "N7", + "sample identifier": "plate N7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.806, 0.795, 3.469, 1.877, 0.395, 0.817, 1.599, 3.755, 3.576, 1.489, 2.044, 3.331, 0.475, 0.143, 2.26, 3.578, 3.975, 2.815, 3.8, 2.408, 1.543, 3.864, 2.503, 2.507, 0.809, 2.719, 3.843, 2.599, 3.131, 0.695, 2.707, 1.297, 3.633, 0.021, 0.49, 1.493, 3.673, 3.254, 2.915, 2.304, 2.639, 1.952, 0.31, 1.845, 2.657, 3.282, 1.757, 2.465, 0.685, 0.076, 3.673] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_332", + "sample document": { + "location identifier": "N8", + "sample identifier": "plate N8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.81, 1.879, 0.079, 2.025, 2.942, 2.292, 0.961, 1.067, 1.675, 0.973, 3.0, 0.623, 2.881, 2.782, 0.746, 3.697, 0.454, 3.653, 0.766, 3.905, 0.72, 3.899, 1.495, 3.769, 3.59, 3.553, 0.657, 3.85, 1.526, 0.962, 1.378, 1.913, 3.054, 1.021, 3.896, 3.418, 3.553, 1.996, 1.547, 3.201, 2.711, 2.186, 1.239, 1.33, 3.639, 1.328, 1.429, 3.063, 1.91, 3.585, 1.303] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_333", + "sample document": { + "location identifier": "N9", + "sample identifier": "plate N9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.811, 3.919, 0.171, 2.953, 2.91, 0.383, 0.31, 2.434, 3.389, 1.634, 1.111, 3.54, 0.713, 3.595, 1.087, 1.569, 1.86, 2.885, 1.328, 0.144, 2.457, 2.105, 1.565, 1.194, 2.533, 2.66, 0.165, 0.129, 2.262, 2.124, 1.594, 1.94, 1.941, 3.658, 2.566, 1.994, 2.882, 2.068, 0.985, 3.034, 3.242, 3.561, 2.158, 1.566, 1.599, 2.646, 0.525, 1.734, 2.552, 3.759, 3.568] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_334", + "sample document": { + "location identifier": "N10", + "sample identifier": "plate N10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.177, 0.581, 3.441, 2.845, 0.705, 2.354, 2.977, 0.419, 0.249, 0.218, 0.18, 0.172, 1.265, 0.04, 3.171, 1.599, 1.054, 1.029, 3.093, 2.686, 3.792, 1.899, 2.293, 0.901, 2.895, 3.947, 3.998, 3.594, 3.887, 2.135, 2.43, 1.577, 2.502, 2.555, 1.416, 1.358, 2.5, 0.813, 1.86, 3.639, 3.905, 1.648, 0.735, 2.816, 3.061, 3.389, 0.893, 1.525, 2.428, 1.046, 3.47] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 546.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_335", + "sample document": { + "location identifier": "N11", + "sample identifier": "plate N11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.705, 3.459, 1.072, 3.776, 2.277, 2.288, 2.539, 3.949, 0.758, 2.355, 3.383, 0.531, 2.114, 1.788, 2.602, 1.669, 2.71, 2.624, 1.813, 3.098, 0.241, 3.168, 3.453, 2.781, 2.143, 1.163, 3.477, 1.839, 3.506, 3.053, 2.472, 1.165, 2.84, 2.664, 1.724, 2.118, 1.43, 2.778, 3.138, 3.069, 3.961, 0.864, 1.101, 1.284, 0.522, 1.117, 2.621, 1.027, 0.459, 1.72, 2.183] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 559.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_336", + "sample document": { + "location identifier": "N12", + "sample identifier": "plate N12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.901, 0.615, 1.948, 3.229, 1.536, 0.005, 2.291, 1.633, 1.113, 2.81, 0.699, 0.442, 1.705, 3.882, 2.217, 1.69, 3.45, 0.063, 0.484, 0.239, 3.931, 3.485, 2.743, 3.137, 3.376, 2.066, 2.169, 2.259, 1.025, 2.542, 2.449, 1.38, 1.786, 0.87, 3.571, 0.55, 0.892, 3.435, 0.187, 2.113, 3.138, 1.144, 2.024, 0.258, 3.261, 0.421, 3.396, 1.401, 2.304, 3.426, 3.171] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_337", + "sample document": { + "location identifier": "N13", + "sample identifier": "plate N13", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.964, 3.974, 1.48, 2.251, 3.415, 1.871, 2.81, 3.852, 3.47, 1.836, 0.032, 0.607, 2.571, 0.36, 3.319, 2.656, 0.834, 0.311, 1.667, 0.798, 0.015, 3.875, 2.371, 1.1, 2.787, 1.46, 2.484, 3.876, 2.955, 2.67, 0.767, 3.954, 1.599, 3.371, 1.485, 1.405, 0.305, 2.618, 0.156, 2.678, 2.081, 3.582, 0.717, 0.276, 3.106, 0.536, 3.453, 3.898, 3.941, 1.764, 2.561] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_338", + "sample document": { + "location identifier": "N14", + "sample identifier": "plate N14", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.089, 0.637, 2.627, 3.156, 1.088, 1.603, 0.38, 3.464, 1.954, 3.387, 2.934, 0.897, 0.799, 1.068, 0.077, 3.008, 3.199, 2.875, 1.913, 2.351, 2.216, 0.155, 2.988, 2.716, 0.432, 3.158, 2.094, 1.993, 2.25, 2.007, 2.586, 3.934, 1.19, 0.108, 3.678, 3.317, 2.971, 0.215, 0.397, 3.801, 3.925, 3.154, 2.201, 3.291, 3.147, 2.685, 3.917, 3.207, 3.029, 1.528, 0.253] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 560.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_339", + "sample document": { + "location identifier": "N15", + "sample identifier": "plate N15", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.023, 2.028, 3.413, 0.345, 0.934, 1.648, 3.911, 2.723, 1.929, 3.509, 2.386, 1.213, 3.946, 0.8, 2.999, 3.706, 0.691, 1.39, 0.76, 0.036, 2.984, 2.477, 2.111, 2.425, 3.062, 1.953, 3.696, 3.569, 1.747, 3.24, 2.886, 2.964, 0.722, 1.753, 1.563, 1.906, 1.776, 3.763, 2.743, 1.668, 3.06, 1.492, 2.467, 0.292, 1.539, 1.94, 2.254, 2.491, 0.147, 2.978, 3.226] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_340", + "sample document": { + "location identifier": "N16", + "sample identifier": "plate N16", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.817, 2.268, 1.491, 1.269, 2.545, 3.916, 0.988, 1.282, 2.98, 1.952, 0.341, 0.976, 2.689, 0.622, 3.421, 0.491, 2.193, 3.237, 1.093, 1.93, 0.927, 2.646, 3.092, 0.976, 1.492, 0.009, 1.819, 0.886, 1.122, 3.698, 1.205, 3.421, 2.768, 0.013, 1.069, 0.696, 3.231, 0.483, 3.017, 1.99, 0.788, 2.48, 3.763, 3.715, 2.718, 0.515, 3.778, 3.67, 2.117, 1.448, 0.061] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 563.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_341", + "sample document": { + "location identifier": "N17", + "sample identifier": "plate N17", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.254, 3.054, 1.048, 2.298, 3.17, 3.175, 0.514, 3.777, 2.536, 2.097, 0.101, 0.16, 3.281, 0.746, 0.919, 2.207, 2.676, 3.552, 2.725, 1.26, 1.709, 0.219, 3.103, 1.141, 2.447, 2.883, 3.376, 2.257, 0.976, 0.231, 2.148, 2.768, 3.673, 3.637, 1.951, 0.367, 1.72, 1.714, 1.898, 1.52, 2.716, 0.706, 0.481, 3.892, 0.686, 2.319, 0.481, 2.969, 1.798, 2.308, 1.101] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_342", + "sample document": { + "location identifier": "N18", + "sample identifier": "plate N18", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.117, 3.392, 0.188, 2.351, 3.034, 3.951, 3.906, 3.851, 0.287, 3.799, 2.257, 2.801, 2.304, 3.948, 1.332, 0.487, 3.644, 2.794, 0.552, 0.486, 0.961, 1.654, 1.204, 2.543, 1.003, 3.737, 3.21, 0.454, 0.127, 2.402, 0.406, 0.458, 2.667, 3.129, 2.031, 3.376, 3.485, 1.285, 2.916, 0.415, 1.813, 1.863, 1.611, 1.721, 0.459, 1.904, 2.176, 3.944, 3.353, 1.832, 0.837] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 526.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_343", + "sample document": { + "location identifier": "N19", + "sample identifier": "plate N19", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.174, 1.246, 1.822, 0.14, 2.463, 2.188, 1.645, 1.348, 3.297, 0.741, 3.451, 3.723, 1.885, 3.392, 1.798, 0.134, 3.174, 1.916, 1.956, 1.002, 2.358, 3.877, 0.137, 2.672, 3.098, 0.042, 3.482, 2.083, 3.098, 1.56, 3.265, 1.101, 2.294, 1.565, 0.232, 3.212, 0.845, 2.989, 3.568, 1.188, 1.839, 3.936, 3.619, 3.674, 2.362, 2.139, 3.726, 2.329, 2.661, 1.77, 3.002] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 562.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_344", + "sample document": { + "location identifier": "N20", + "sample identifier": "plate N20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.027, 1.397, 0.83, 2.478, 0.297, 1.108, 3.149, 1.041, 2.42, 2.705, 3.561, 2.25, 1.736, 1.475, 2.35, 1.429, 0.319, 3.16, 2.586, 3.289, 0.185, 2.348, 0.767, 3.162, 2.421, 0.258, 0.462, 0.31, 0.959, 0.316, 1.153, 3.422, 1.328, 2.558, 1.237, 3.703, 1.464, 3.086, 3.934, 2.103, 1.695, 1.947, 1.147, 2.483, 2.278, 1.686, 1.883, 2.198, 0.011, 0.709, 3.406] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_345", + "sample document": { + "location identifier": "N21", + "sample identifier": "plate N21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.169, 0.074, 2.481, 2.816, 3.679, 0.629, 1.668, 0.057, 0.038, 0.645, 2.839, 0.082, 2.103, 1.552, 0.138, 0.921, 3.177, 0.237, 2.646, 3.964, 1.233, 3.225, 0.482, 1.593, 2.238, 1.2, 2.284, 0.883, 0.734, 2.375, 2.263, 0.298, 0.249, 0.91, 1.983, 3.348, 2.847, 3.742, 1.558, 3.074, 3.795, 3.029, 3.896, 1.457, 2.856, 1.865, 3.043, 0.93, 2.14, 0.764, 2.705] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 561.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_346", + "sample document": { + "location identifier": "N22", + "sample identifier": "plate N22", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.961, 1.364, 0.745, 2.172, 3.944, 3.592, 0.887, 0.578, 2.479, 2.344, 0.785, 3.322, 1.663, 2.382, 2.54, 3.832, 1.193, 3.568, 0.79, 2.074, 3.435, 2.679, 3.572, 0.169, 2.204, 3.329, 3.024, 2.737, 0.373, 2.156, 1.354, 2.742, 3.969, 3.67, 0.302, 2.933, 3.504, 2.737, 2.039, 3.755, 1.96, 3.163, 3.078, 0.729, 3.01, 3.706, 2.232, 3.075, 0.315, 2.032, 1.85] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 552.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_347", + "sample document": { + "location identifier": "N23", + "sample identifier": "plate N23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.362, 1.35, 2.69, 3.269, 3.281, 1.792, 0.576, 3.968, 0.615, 0.567, 2.149, 0.205, 0.322, 0.99, 2.042, 3.352, 1.993, 2.079, 3.606, 0.328, 2.456, 1.528, 1.034, 0.114, 0.271, 3.6, 2.842, 1.158, 2.497, 1.096, 3.949, 2.422, 2.34, 0.306, 3.991, 1.391, 1.279, 0.401, 1.02, 1.141, 2.928, 2.768, 1.424, 3.187, 3.81, 2.958, 2.756, 3.739, 0.967, 0.354, 0.239] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_348", + "sample document": { + "location identifier": "N24", + "sample identifier": "plate N24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.996, 0.708, 1.703, 3.394, 3.833, 0.316, 2.575, 2.997, 3.681, 2.949, 3.417, 1.471, 3.518, 0.618, 3.727, 1.864, 0.016, 0.998, 0.651, 2.073, 1.592, 1.058, 2.465, 1.4, 3.687, 0.104, 1.846, 0.304, 1.312, 0.844, 3.102, 0.19, 2.143, 0.857, 2.952, 1.713, 0.637, 0.911, 0.157, 1.075, 2.704, 1.403, 1.339, 2.191, 3.51, 1.297, 1.906, 2.569, 0.083, 1.094, 2.739] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 529.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_350", + "sample document": { + "location identifier": "O1", + "sample identifier": "plate O1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.74, 0.316, 2.281, 2.646, 3.937, 2.243, 0.303, 3.707, 3.729, 2.469, 2.271, 1.684, 2.836, 3.847, 3.226, 3.327, 2.66, 1.665, 2.013, 1.226, 3.104, 0.84, 3.575, 3.368, 0.188, 3.718, 0.273, 1.889, 2.389, 2.198, 3.277, 0.22, 0.218, 2.104, 0.362, 3.874, 3.862, 2.21, 3.015, 3.47, 0.334, 1.204, 0.428, 2.605, 0.432, 3.719, 2.502, 2.344, 0.283, 1.97, 3.245] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 528.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_351", + "sample document": { + "location identifier": "O2", + "sample identifier": "plate O2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.903, 2.07, 3.868, 3.634, 1.899, 0.74, 2.912, 2.457, 0.218, 1.969, 2.413, 1.317, 1.531, 3.191, 2.05, 1.466, 0.732, 3.485, 3.352, 3.465, 0.45, 2.65, 2.542, 0.892, 1.899, 0.412, 0.97, 2.936, 0.469, 1.216, 1.929, 1.605, 0.418, 2.952, 2.374, 2.15, 0.35, 2.469, 2.462, 3.133, 0.95, 3.752, 2.796, 1.501, 1.92, 3.886, 2.897, 3.414, 2.381, 2.252, 1.77] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 538.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_352", + "sample document": { + "location identifier": "O3", + "sample identifier": "plate O3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.859, 0.931, 2.505, 2.795, 2.253, 3.527, 2.975, 1.735, 1.487, 3.77, 3.976, 1.988, 3.002, 0.039, 0.807, 0.899, 2.578, 0.817, 3.9, 1.115, 2.262, 1.022, 0.218, 2.514, 0.697, 3.853, 1.041, 2.971, 2.012, 1.515, 1.555, 0.554, 2.216, 3.445, 3.07, 0.674, 1.913, 0.157, 0.121, 2.622, 1.374, 0.734, 0.974, 3.363, 0.974, 1.764, 3.793, 1.461, 1.113, 2.987, 0.318] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 530.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_353", + "sample document": { + "location identifier": "O4", + "sample identifier": "plate O4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.596, 2.481, 1.136, 3.508, 1.836, 0.713, 3.99, 2.097, 2.399, 2.486, 0.004, 3.722, 3.971, 2.214, 3.422, 3.771, 3.556, 0.969, 0.133, 2.985, 2.42, 0.696, 1.278, 3.741, 1.527, 0.048, 0.854, 1.54, 2.932, 0.06, 3.579, 1.858, 3.025, 1.196, 2.959, 2.072, 1.079, 3.937, 1.234, 3.96, 1.922, 2.06, 1.722, 0.135, 1.369, 1.012, 1.002, 1.149, 1.551, 1.993, 0.237] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 535.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_354", + "sample document": { + "location identifier": "O5", + "sample identifier": "plate O5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.492, 0.979, 0.001, 1.897, 1.9, 1.202, 1.395, 1.981, 1.787, 3.858, 2.449, 3.164, 2.339, 2.907, 2.146, 0.697, 2.774, 3.255, 1.349, 2.691, 3.619, 3.735, 0.172, 1.063, 0.36, 2.974, 1.142, 2.371, 0.515, 3.045, 3.705, 3.988, 0.939, 3.822, 3.087, 0.878, 3.023, 3.298, 1.058, 0.87, 3.684, 1.956, 3.446, 0.102, 3.473, 2.895, 3.383, 1.228, 3.223, 0.315, 2.227] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_355", + "sample document": { + "location identifier": "O6", + "sample identifier": "plate O6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.893, 0.202, 3.301, 0.617, 0.757, 0.806, 2.938, 1.537, 2.926, 0.06, 3.023, 1.465, 2.742, 0.152, 2.46, 2.225, 2.516, 3.819, 1.268, 1.673, 3.476, 2.196, 0.479, 3.007, 1.663, 0.289, 0.07, 1.59, 1.465, 3.591, 3.914, 3.148, 0.2, 0.817, 1.812, 3.786, 1.638, 3.205, 2.33, 0.071, 0.084, 1.761, 2.132, 0.809, 0.66, 0.49, 0.703, 3.95, 1.012, 0.669, 0.866] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_356", + "sample document": { + "location identifier": "O7", + "sample identifier": "plate O7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.408, 1.955, 2.641, 2.751, 3.697, 3.723, 0.294, 2.953, 0.467, 0.736, 1.348, 0.071, 3.334, 0.145, 3.875, 1.265, 1.925, 2.34, 2.674, 0.587, 3.31, 1.489, 1.196, 1.588, 1.714, 0.063, 3.669, 2.346, 1.173, 3.585, 0.12, 0.577, 0.795, 2.724, 2.505, 1.193, 1.558, 2.065, 2.114, 0.062, 1.343, 0.251, 1.862, 3.335, 2.736, 1.69, 2.797, 0.664, 0.784, 3.224, 2.778] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_357", + "sample document": { + "location identifier": "O8", + "sample identifier": "plate O8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.609, 2.337, 0.082, 1.556, 3.918, 0.759, 1.052, 1.037, 3.633, 0.054, 1.948, 1.78, 0.882, 0.616, 0.77, 3.275, 0.61, 1.639, 2.682, 3.706, 3.859, 0.225, 2.612, 3.243, 3.059, 3.627, 1.86, 2.852, 0.024, 1.265, 3.004, 1.561, 1.949, 0.807, 2.51, 2.239, 0.713, 1.168, 2.587, 0.434, 0.506, 1.027, 2.481, 0.007, 3.395, 2.471, 0.979, 2.718, 1.965, 2.414, 2.187] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 539.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_358", + "sample document": { + "location identifier": "O9", + "sample identifier": "plate O9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.024, 2.102, 3.517, 2.918, 1.383, 3.725, 0.838, 2.496, 0.291, 2.898, 2.199, 1.013, 2.367, 1.049, 0.386, 3.831, 0.074, 2.106, 2.53, 2.562, 3.442, 3.052, 2.248, 3.2, 2.831, 1.744, 2.604, 3.848, 0.588, 2.647, 3.142, 0.886, 1.609, 3.078, 3.98, 3.458, 2.432, 1.889, 1.126, 2.514, 3.874, 2.671, 2.295, 1.536, 2.306, 0.014, 0.113, 2.957, 3.008, 2.639, 0.904] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 554.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_359", + "sample document": { + "location identifier": "O10", + "sample identifier": "plate O10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.612, 3.435, 3.851, 2.745, 3.971, 3.854, 0.316, 0.086, 3.639, 1.12, 0.989, 1.908, 1.643, 3.755, 1.313, 3.403, 3.289, 1.069, 0.927, 1.398, 2.185, 0.979, 0.016, 2.687, 0.77, 0.756, 0.712, 0.893, 2.817, 1.63, 3.646, 0.84, 1.948, 1.742, 2.529, 1.451, 1.757, 0.333, 0.009, 3.604, 2.115, 1.802, 1.486, 1.393, 2.884, 0.762, 0.652, 1.78, 0.993, 0.611, 0.824] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_360", + "sample document": { + "location identifier": "O11", + "sample identifier": "plate O11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.888, 2.08, 1.241, 2.719, 3.632, 3.419, 1.164, 1.974, 3.214, 3.141, 3.423, 1.268, 2.009, 1.474, 0.149, 3.96, 3.901, 1.226, 3.862, 1.645, 2.955, 1.059, 1.322, 3.283, 0.383, 3.492, 2.622, 3.802, 0.008, 0.104, 2.932, 3.9, 2.206, 0.805, 1.757, 2.759, 0.707, 3.023, 2.896, 2.032, 0.593, 2.359, 0.794, 0.463, 2.691, 0.533, 3.477, 3.919, 2.735, 0.802, 0.751] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 567.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_361", + "sample document": { + "location identifier": "O12", + "sample identifier": "plate O12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.554, 1.13, 2.965, 1.869, 0.829, 0.758, 1.957, 2.335, 0.14, 0.796, 1.361, 1.965, 3.11, 0.209, 3.523, 3.062, 1.204, 3.716, 1.39, 3.253, 0.877, 2.329, 1.83, 1.051, 0.596, 0.265, 0.859, 0.592, 3.849, 0.015, 2.703, 1.067, 3.206, 3.353, 2.378, 2.769, 3.24, 2.936, 0.928, 2.001, 2.749, 0.687, 2.756, 1.235, 3.231, 0.393, 1.684, 0.254, 3.168, 1.471, 2.273] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 556.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_375", + "sample document": { + "location identifier": "P1", + "sample identifier": "plate P1", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.202, 1.344, 1.548, 3.873, 2.224, 3.3, 1.913, 1.272, 0.563, 3.898, 1.365, 2.486, 0.124, 2.092, 0.294, 2.759, 3.756, 1.831, 0.753, 3.821, 2.268, 2.788, 3.389, 0.503, 0.189, 3.572, 0.594, 1.819, 0.203, 2.58, 0.605, 1.423, 2.378, 1.742, 2.501, 3.722, 1.657, 3.479, 0.153, 3.468, 1.327, 1.663, 0.364, 2.102, 1.384, 2.2, 2.631, 3.143, 2.937, 1.633, 1.927] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_376", + "sample document": { + "location identifier": "P2", + "sample identifier": "plate P2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.422, 2.414, 1.649, 0.005, 1.413, 1.955, 1.045, 3.683, 2.651, 2.706, 0.093, 1.069, 1.983, 3.293, 3.941, 0.108, 2.382, 3.591, 0.571, 1.102, 0.277, 1.677, 1.285, 2.494, 0.604, 2.423, 1.286, 3.118, 1.989, 0.941, 1.451, 2.882, 2.569, 0.652, 2.182, 3.008, 0.728, 1.737, 1.087, 1.767, 0.611, 3.795, 1.501, 0.762, 1.233, 0.594, 2.381, 2.808, 1.443, 2.092, 0.249] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 533.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_377", + "sample document": { + "location identifier": "P3", + "sample identifier": "plate P3", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.551, 2.366, 0.531, 1.65, 0.745, 1.129, 3.154, 3.4, 2.99, 0.668, 1.926, 1.694, 1.71, 1.255, 1.211, 2.499, 1.33, 1.111, 0.932, 3.379, 0.644, 2.503, 2.803, 0.49, 0.481, 0.175, 0.523, 1.26, 0.01, 0.042, 2.478, 1.675, 3.896, 0.691, 1.899, 0.515, 2.037, 3.002, 1.437, 1.879, 1.574, 2.336, 2.097, 1.099, 2.684, 2.1, 3.791, 3.506, 0.022, 2.094, 1.051] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_378", + "sample document": { + "location identifier": "P4", + "sample identifier": "plate P4", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.697, 0.51, 2.713, 3.604, 1.047, 3.563, 0.041, 1.168, 0.569, 0.606, 1.894, 3.39, 2.948, 2.19, 0.251, 1.798, 1.019, 3.355, 0.696, 0.461, 2.328, 3.673, 3.052, 1.805, 2.307, 0.406, 1.703, 1.805, 2.38, 0.384, 1.016, 1.238, 1.915, 2.991, 0.78, 1.164, 1.182, 1.086, 0.851, 0.951, 1.995, 1.833, 0.868, 1.273, 3.68, 2.946, 3.149, 2.909, 2.433, 0.302, 2.771] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 541.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_379", + "sample document": { + "location identifier": "P5", + "sample identifier": "plate P5", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.151, 3.325, 1.632, 2.722, 2.024, 1.457, 0.908, 1.296, 0.641, 1.859, 2.236, 2.788, 0.184, 3.59, 0.655, 1.475, 3.956, 1.409, 3.086, 0.615, 3.932, 2.504, 3.744, 2.465, 0.494, 2.805, 1.779, 2.124, 3.361, 1.257, 2.794, 3.371, 2.078, 1.612, 0.864, 1.912, 0.282, 0.268, 2.756, 3.707, 0.274, 3.789, 0.21, 3.092, 3.759, 3.044, 0.683, 1.683, 3.024, 1.47, 3.192] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 564.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_380", + "sample document": { + "location identifier": "P6", + "sample identifier": "plate P6", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.499, 3.346, 3.686, 2.839, 1.646, 3.581, 3.166, 2.228, 3.218, 3.677, 2.783, 1.935, 3.383, 3.065, 2.865, 0.71, 2.571, 2.725, 2.742, 1.193, 3.688, 2.653, 3.379, 0.341, 0.142, 2.294, 0.652, 2.706, 1.449, 2.121, 0.096, 3.1, 1.89, 2.065, 1.295, 0.024, 2.391, 2.773, 3.218, 2.331, 1.115, 2.039, 3.537, 0.029, 1.49, 1.854, 0.826, 0.027, 0.894, 2.334, 2.112] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 522.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_381", + "sample document": { + "location identifier": "P7", + "sample identifier": "plate P7", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.957, 0.282, 0.277, 3.503, 2.845, 3.967, 3.345, 2.696, 3.352, 2.929, 0.46, 0.778, 1.097, 3.581, 3.683, 0.044, 1.318, 1.769, 2.84, 2.319, 3.798, 3.507, 0.41, 0.078, 1.648, 3.115, 3.349, 2.85, 2.288, 1.467, 0.624, 1.812, 3.115, 0.008, 1.138, 2.817, 1.613, 2.561, 2.449, 0.056, 3.045, 0.077, 3.865, 3.402, 0.654, 1.261, 2.44, 0.448, 1.807, 1.81, 3.507] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_382", + "sample document": { + "location identifier": "P8", + "sample identifier": "plate P8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.257, 2.053, 0.015, 2.314, 3.45, 3.872, 0.199, 1.854, 3.729, 0.618, 0.495, 0.407, 1.884, 2.304, 2.647, 1.662, 1.088, 2.442, 0.866, 2.43, 2.756, 3.32, 2.783, 3.273, 3.721, 3.641, 1.008, 3.423, 0.386, 0.675, 2.9, 1.043, 0.478, 1.959, 2.367, 3.758, 3.1, 1.694, 1.688, 2.945, 1.413, 0.706, 2.719, 3.438, 2.55, 3.669, 1.981, 1.098, 2.007, 3.598, 1.352] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 544.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_383", + "sample document": { + "location identifier": "P9", + "sample identifier": "plate P9", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [2.006, 0.941, 3.379, 0.75, 2.936, 3.27, 0.741, 2.593, 3.809, 2.863, 0.776, 1.467, 3.054, 1.717, 3.452, 3.929, 3.924, 3.936, 2.889, 2.562, 3.393, 0.754, 1.92, 1.017, 2.05, 0.601, 3.345, 0.723, 0.051, 1.659, 3.909, 1.416, 0.788, 3.323, 0.894, 0.101, 1.098, 1.208, 3.431, 0.488, 2.358, 3.101, 1.878, 0.081, 0.637, 3.238, 3.664, 1.72, 3.098, 3.739, 2.056] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 536.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_384", + "sample document": { + "location identifier": "P10", + "sample identifier": "plate P10", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.161, 3.117, 1.036, 1.958, 1.251, 3.02, 2.362, 2.7, 2.335, 3.925, 0.017, 2.541, 2.149, 2.954, 3.36, 0.679, 3.731, 0.822, 3.35, 2.83, 2.715, 0.505, 2.401, 0.203, 0.292, 2.875, 1.839, 0.379, 2.811, 0.936, 1.624, 1.625, 0.312, 3.603, 2.748, 2.298, 3.751, 1.364, 3.642, 1.081, 2.736, 2.508, 1.096, 0.563, 2.341, 0.559, 3.729, 1.127, 1.277, 2.558, 3.933] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 570.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_385", + "sample document": { + "location identifier": "P11", + "sample identifier": "plate P11", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.897, 3.747, 0.908, 3.34, 0.656, 0.716, 0.832, 1.665, 2.376, 1.181, 1.982, 3.888, 1.398, 2.3, 2.392, 2.228, 2.546, 0.206, 1.062, 0.928, 2.366, 1.179, 2.269, 0.093, 0.207, 3.409, 1.837, 1.862, 3.733, 3.146, 0.712, 3.102, 0.252, 1.003, 0.727, 1.878, 3.404, 0.262, 2.091, 1.581, 2.919, 3.698, 1.266, 3.9, 0.754, 2.619, 3.697, 2.262, 3.948, 2.33, 1.182] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 548.0, + "unit": "nm" + } + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_386", + "sample document": { + "location identifier": "P12", + "sample identifier": "plate P12", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.92, 0.215, 1.63, 1.566, 3.718, 1.478, 0.814, 3.133, 1.247, 2.878, 2.97, 1.932, 3.23, 0.468, 2.88, 3.636, 0.394, 1.573, 0.514, 2.824, 2.284, 2.114, 3.48, 2.009, 2.667, 3.913, 2.369, 3.339, 1.588, 3.711, 3.575, 1.913, 1.402, 1.963, 3.791, 2.886, 2.622, 3.436, 1.008, 0.399, 2.589, 1.128, 0.844, 2.702, 3.948, 1.766, 2.035, 3.431, 1.873, 2.983, 3.303] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + } + ], + "data system document": { + "ASM file identifier": "N/A", + "data system instance identifier": "N/A", + "UNC path": "tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt", + "file name": "partial_plate_with_empty_values.txt", + "ASM converter name": "allotropy_molecular_devices_softmax_pro", + "ASM converter version": "0.1.93", + "software name": "SoftMax Pro" + }, + "device system document": { + "device identifier": "N/A", + "model number": "N/A" + } + } +} diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9727d1d5657c397df81af9d8e09a1aac748ddb5 GIT binary patch literal 231240 zcmaIf&#rG3{p(*YE%C+aJI7&f;Hw`@g>Z!?%C` z-Trr9UjD<^Q~&$dv;XkzKY#81?%RL=?caU-kKb+n-IvY(`SrWM|JwcEzSjTu*MI-Z zuiyWxuc!W}ul1k5y#Ma|&!4~j^zHZGcmDeQzuWiUKYjbt*MI);+uy$bx1B$H`^(pV z`hop--~P>4gn$1X$3J{W^`F16{QbB8`rH5WmFIu+_4|3@<9FYE{Q2v@dHCzs|NQOi ze}4Y@pFjL#-1-0M`wsg*{9{zlEbbq^Klg|4PyXTiv%~(=KgRLwPv2t=IgI5e$Dh6! z{mYk++5O$u?|%Ni{{7efpT2z9|Kr#CuV4QOfwk3G_`9#T^UKelzk8a`KYzE%{^### zRPU$nxz78azMlBqSEdmB{>y$({_Sgp10H|=vJi>Q&tI|HR~KB_|LF^x_3W4TBK`iK zqCz?AzkS(?y1f7NPiX%5=&EUp}m{fg|;^J_~zU%Tpy;3=`ac z`?4s9zkK~}zyH&hMcMrR%Ocz?_*lk}$^hzO%S*&%unJlK;mfLO@xi-&HSuhIrYSzh zGqgW{JsHNoetAEYjICn`E@(sWmw!aVyBc1kEFj7EAHSZA0W~k{pT1V*`tz4>UPOYV zXR(`4N?^~1&sbj;GWy%sp4wWgib&Yt1A=)!mVWk7X=b~TgCsYpG7X# zRrTjDEYOHb_vM6{(5RAV{OS{E_&YY_RMvm~dNS+3ec8lbYV+jJU(bg{x95?@L>1|; zU;h~z81tzMd)BI|QTy?v`f+xBfFC~jr!0O>L6FgYI)t)HQJZ}{{pD*7jfzlzQE?NO zrWhOcbY3Puef@82Ah0egJwhvd(pKv~e?|4|SR40j^c_6*b$W4CFlh3fHj2DGkTiPhU@!DfZN9*7H5&fBf!ysMgUK-r?V?eAtI(jUKUisWXL7tBDpNYi*ItCX1&PtM!;(1m<@)_K!D8|aUxDP{K) z-ks2_hwO4{e%t@smrWI{gK@czurie}W=(rpS9@OQx=79GJ-bScz1ZL{9%)Gyvv!K6 z=VfibX)He$F?Q4PRWt3eVC~!#^*G|Mo|wg0w5Fcx#AU?ZOsIN##ahRCSB=z?E7&e`X>g~ds7rU>L7RT?ywNoAv(_Hker&2!D8rMU3s$OyO5woi}Cr~9m!m`>HyDAM$>dAM~v;~})H!;3>z$_dNb;M^r#fnLtrly{yG?|=|#$$2d zg=Lwp>#VKP2>$t#hb+S0JF9)CT@`~d|4`kt_vY6b2ib4`?5oPMP_b01GptpWm$FW4 zW9;^!hfG%bG(BRwwR1zZGQnyUlx*Z;+cZQ+rxB8_u{gu0TDhjLf4pvX*X^3jw#;X8)Y|x)o=GDYq{o8 zrxev}t-GcbsP-*V@K_?H?QjR%~5D%k%q*#mWdv#pWRf_liA6J zcc*yv&YH8?Il&JN+drO`$7a;{z`$y`v&MR}iY<=vjK$E}t!tfUae-YPMfcVpTKTZC zuck$<+KV-NHuDI}tG%5sc5xEV*H`XzH}7`pEVp~-{G8m2c>Ii$!cc{+X4i#ONQ zt}0=n((*UIvgu5P#!Z<$|0W84$JZ)togRmN7;se8J!|IkW1pY&MX~v8iZ7RYyOiO} zRBJpP{+qyh0uRU3P#$_7>lAf>jExD=48%fgcBVl8naS>U5W6{~puVo#zy9njU8F_j zv3o!Me9231Sjr>c@rT!JdUnX}+aEo7cCmH?o6Vj7w1|b{2?87xNp(_1Uk!O_`pXZ3 zD!3b+nB5gv@KT**fmL3rpQvH+tXU5G*t`3ZsS`4{k4_q$o_|%76F<~lmCHmd)vwC9 zgdQH>C3<$Z&E-1p$I>|EvFBDBc&Rpwe2X)d?i+@Fkst3OW@7^4W;%G)w^_y>uIk!c z8E2agY%m-*&g1ekUwihl7C)V<6ZG>qBskAQ?+kvwza+qFM)G?Mjpd!OTi;hw^Q4T| zzxeSr*6wn=TSRyLaT^XE4rku}r|=k6>(lbS0SwvB zu_3rw2j%(sd|R-;O7h5y$q`3vsfWk(Fl0N`!_J-;J(5SPhtm0!mYl)q_r52wPNy=p z=ABNnZf2g6#EcoZR4Fgkx*!cU-Sir+*?-RFD#ikG-YMBWENWzbPu|&0y)fFB1@EHj z!q~uzeSXH#Jl=NzKH|&VuY;Yx_IaGD#OeFFUGpGqP=+UuBi8v4Q+>n-OB`|Zzl_;;RFD3XO5BS+g-;>ooOlABL(= zaj{cJEvtKHss3YU=e{+?)km1EkL;(Y*n!h&SC=f?WwP7lCr{=ce=)p_oZ-y^Z%=iU zcx7kWh6+bA<;9GG%Gx|kTNIJakifdPK-K&0pT4>*ugyrF%@8>*;uNr2R0$m%`<-ume(xIIgca=^a2#j-ia=Z}BhuP&naw=KhUs^*)=<+OPzl0H-m_I9%|b5Hr3 zjMK&Dh)h^y|IT2w%O^dmp14zyNEDl*@F>4k<`C0gb%ZiBbQU+fhk$ldATGxQl*@1x z+=M+nE)RZ&z`e3arfMGDZJHL8XT3`8ZXqk3ooeL~O6)-+LvK4WANT7e7~sN_wb^lT zcRwBXyOWAV&BcPp+OxDBYm~#!{NEgbEtRT-HJ@P^wz2lfl)JUem&wj$*2`NQ98{4_ zF~5g9hRxCD^!u)8UV3uTZxZ!hWnZ6{-R>gWwI{j>(%R`LGy61aA8x7@-+p%#*~49h z=_iILyPU1767PH-LsRhGdQ`MJx_72{r&;@aVBWKR{vAE)E}I2!B6?!9en63*-HNAmK< zB46B63l7=PleH+PVEmPrxnj*)CzPX;iWYfy=A?yq6N$=-s?K$6?{te=q*u9aOR^vK zF~}M+k*s<5EE|&nBbO~CrSO*^})l_xzbKD6~drmFax zQGaiX3(Ouv(3od=hXxnpXlLe--3@U!X8!QfB<}2D{jy6dr=jUwR0>VorXN4cX_Xn? zdw1hMKmC1&y?r@}OI`U{zfON|9#=gosskw(dpxSONXHW2?;LpuylPvktKK{=g4= z=ULqqPBzqv`%j)iGu7Q((`Pai)kLgnuO>{SqRKWsIdfZ6N4lYD>!I1CS|+=#Ti?B1 z)+x(#r=gqdGL2Wg9Iq-HXS*%Rk8L@{y!{~;y<6FFo~d&x55Ye z-W20(yJkbU?t71JjDK&@)fq2w(ckA*-JPMs_{;e}cCYWS7%B?2X7h4H=OWp!mwBhf zxa)h1jJ#D=F|#@qTu$A~czNGj+*R_3FFeYLkB~KG?PDDui&|%xNou_c>`b%nwj`=) zmQG9+UQS7@d8zJtAY5jDJ>8vMe4Ug>m8>@OSXE(9*Q(0Kvntv8eOA<-6%~eIyI$d4 zw)m)T$IYE0^udqJ-9zGxg2Sof)2)-Q3iic{&u;O@)FSN+uyzwkp=ArP-7;6%5Qjts zdag4CGoHdW-%jAFpn5W5)8uBOKk})|WhXvAF-*5**QA*euUl0O8}`k-rj(kcN_es{ zYr;m8VtultE7FbG5wg6Q;dwJrTU*Ig7QGu!!FNM*`;s*VRyn-9U+&aAFE4I0T4%Ax z%3Gt*zPCH`uRL|XI(k-A84bZQv8KF`QFi`yrS)+nKe@`=+FM2lu*=#$f6aoT(^J{G zy%$AS@d3&1`onsv=V`TH&8)jkTVp&F@|C;&&4Xb+74$8v{gkK^!o2r8h}0+U*PqZ? z$?KR|yiEve_3+%d-Za{JcTQe9we34Uv1;E5(z6s<4`Db4slZw+exR{-Tay2(u=}w6 zp|Oh<)}op-ybRgy4Xj12#@2Nu4ac;8gK|-aAV29q2jTa4f}p#r_35P9Y?sQzh>i4t zJO0>M!6km@|Ja+hV6h(?)Lc$flAop?KWtJDFY=iG_w95X%zo2IEYprp`>d_udC!)< z=MCrC<4KO6Jn7cZl%dSKz3`&iRYcd7t;)(48Wr5iiPt)1uV&+nH3g*!*`>JM6vfnG zVlKOzYE8kham>ptFYYht+|AGae4Y}T2=;Xvdp@1BpIx`zom$o=Q@rcj>J4LFR3=s_ zSdBf~-5&=SZuZNyY;}%j*}r*=o3VF&4*|StMpwMB(NA^M?v4E2O=FXQ<=YeZX=c(_ zJtnj2MFF1-;ZQcs6Dtgfi2c@1jO(U#wr5RYxR>!x#O=RzpTgFao0rhv9js{;8c|t0 z*UAI`)$Tf&g^c*a8VhS^hXRBDulaIj^rWE)Nr@2_kEi8IEWh@nAi0nMTUmP@ybT6L!j1GzKJ7O^~D)`Px3hq zb_0|ZU3+#lIW@m$nORb8Z)#vH_T(2gPK?-g+l63CSw9_5aG9Z=WI+e`u&?{d$yp#0 zjHYrm_U;ll-7(pi=%F#$LW%A8!#8B}Ih1Pn+dqAAfl@`TSMIyeeQ$6-x;)lpa&pIy z4LMambNh5qHRKQZxbyqvwi)}|IPJb)Tjq7$r#p&Rk5hpDWG4)ANDcC@j;rq`mv#5uVx=_}t>IEri1lF_*bQw6_7_qf)icFVew?}?g`TGE zpB~4?X&wJ8?3dH>*rd01H%RSH8f$sL820xq!;PW+dlK&=@u^pk%jmq^+$gGl2Zc?s*d05vqU%?Qb(VgM?>jwUER!-E$LnDpVb4Zy zTeE>)d|3L*I{ZVx#*?AJQ~j*V>NA>8f8I&4%%|+^^W&6B_4dV`7B@equIUR84TTY@B*&>#Y?0dFk&J%YN0g)(usn8-#tzsmkjq$lprsT^w4d zFgrbuF%^T)-g~o?Wf|ZvcA7w9%jT1x>7j{PwdlX+o4_pXd*0f9dU2}21oM0Me|=PO zbIo&XhmtpQDxEpsFa)u=(+W~nrOHs% z(z_XQ3c2~GMzQH^ZGBU~b7G35Bl0L8kzjP@W5U{$%U+g6H6!KB4;Hi0x!LG3K4&wI ztW`o?)WUh@S$w?TQF#xKUi{S0(C;q#I2eTV^b_Oscy1ObF12Q9oyc#V1a}p#O(Cleo@SUtIf?2xKqD=O>fpQZ=R%8 z3NAaUO$QX2vSMZ^@9sc9Y4z=OyyUaLEXhQF=fC$eS?SVn?##!p8wkFRB|gksF|B(y zfXnHUQo6AZ@7|Mmj5E(-xR_A!$>t{T-uvM5dt7_Y^cRP3tRI%0uk5=c^M|2Si|J~h z8dW%c+3Ws%n!@3-VlS>dsEWM`^M5QY>pII*O;RkgEvM9OzQV}c)g_Skq6JT1Dc=x_c2X_|jjj<>5(rSo=Lz%z}%4NSg9&)s_#@S%gFm zSmejVjSC%h>`vX&)Y;cv_H{r^Z)F!3le(aZ51+?=5rOoA{%HSocB9_)2{fC)5X^7L0OBG8rjQw z9NoR+J=gS9dOUq&EA9All!dOdFDf3}U*BK9is)@arm~>btLV-+J}^`qT@)L7)Ow69 zrnOVM?7VG?Z-4JHqMDa@94|Xz?5CGS-Ms`dceA2ymj#4P1~sjBpsG(GfraiAB+`+^~}n9$3qqYufu(5i#hu-%45&s z1s5^hKD?*Ww`a>q*QEh#*7BpGBK2l4?q+i=*?s3~InaI{RI?n)N1hat{W~v*lxMvQ z6YKj<^>*CO%V85^{N495D>a_Qd|12pv!_&gg9CqM&PL`*EF% zf8k@hPIXzIS0y###LGZ>kh`YCA3M z_fz}g@3h$Zov2q|S}s0ZVN}O7VCt|br>4Q~SaxxdGWf&Sto6fqx!Z;_HKyr7KEwV_ z$-7JS?E}|xE`L2C(kgbkk`tTluLj4`RJeCLYo~;)hjO#dT3_2=g*T_I-?P@;M~3!c zDU&LOgC+-`R36*36nec^SI}X4qpMB=Z&z&i6p5eV@5#PMh(ycwSx`h?3($lO}bG@WmY!=p1G zj82CzntCyyswY-vp^oo80L_wfNR`m{^?achRe; znXDG#sG|7&|7BsKl%uJh-JK0iZM(<8X2M2~ILN-Wj^hz#{ZAP-3^3)l}a7{nu<63a<3+FHNNluMM0kB-@T2!XHEHH;o$1_=Kf+H569FH z-~DRmzxcXL-twp?#?$&{+}!D)m}+dq9{@np=^S7YMM z{`yIMWwDGlJFQKn_B&x zOsB#ucB*?)6bMg=o_l*;mzIxy!Pj{4oK<&gYkI4meVGutU?+VAm`!6EW15}&aP+=Kz_UhK0GGE|2h8BPCMOzpDI*gVe z!HGIGao|pIsZT`lViwyFr8Y5oH@22pnxQ=Q_C<$ub=X~kA8*+9x8BW=&5$hj>$21~ z1g9~lamcNT%HmT&u(&Z)3HoTl&`j?+BP^l8Sxjvfh<}j8(jB+*hFRWSTtv@F611EL2CnVmha)Ew1tc zRo-z`zUIMkb+gw@_bg=VSy3TO<9VNQZVt)`7m$h51aaEM5slOz-nCQ|dRn|wVf*uQ z_YF#ee)f0fnlgO;lBcqRB{rP5F`xr5BaZ5y?|Z{kUC-jc+zzi}z@v5bhp~14ZjMj>>tfT?daUg3!RGByelTMn=W?3OeXDd=D3)r$rlyC0ZD))8 zQUE>SVCZ+BIF`gY&pY|}^`<7C-<#EPur`&`irxx0=IR~!v^KY`+>>r2Hr-)Z#AH4W6? zPAqs=_q)0DuVUx(=876rUzz5IGD44;5bNc*SD&7R0D2tgw<_=JPCBHMtLIJ=c-Z9M z6y;xzDj4_h!zM4b$5Iup+U|TW@=#F$&+I#&SG~J2Vp~M}Zs67C?uatxkrzl0-}09a zP4*;(#i@KeTV2bi+Ds`squ5ZyakqH|8SgS2`kSYiE^~b@*73xnxfQbaUurjLAm}8J zAw_0S{ikiXX1y+l#awLP9AG`0VH`Kp75o0($?~{2X!ptTrq1|wUkicru!=YL_>o^W zvPw&;*;>_lwj0FpByTyzFzZ)0ls#@X&1DEd9>uRKXwLpJulDk2y=mw7>s2e7X; z5`%j4Ta~-d?WuWXYpSqWE^rQJm=jYfF$vlwNG9N--D5_eSccJy3 z6oTI2J?n-Q%J&V5S}?v?dsZg&t>5h5WRUe$cK0q8yZ>65M&iKOd-$|+Z$)p!I|*eU z5?X4inXwp{$8mie$&I$l&8;%)_m1{b}bC{l@w@ zyy@b%d87Aq-Q*aDHxE^XcI@LkMsd-zyubn>jWivtJ$oE2ht2e9;rdfXMOyZlz_Q(0 zFArX5i0ar-2Q4PJwsYCKcX#%t zUOLeOo|U0f?9JrX>+*jdabH+gi>9#3ZcUNZMx@r}05nk2OtW9#g}_*pT>ZV+-@ZSF3IHtk- zlBAceQ}52DXX*kyuF~UXRpf^<`9Ge9Y*j8lx}q@8-f(;mXSW33sv^M>%r(rUi4-x;l0X2DCV(L zUze#mg?4k6KlTPxsc>xF zx2V)emsE|xI@EeGhVH!eSG8rfJKM2SkLk|hcjM#JxmjGNO!ai)RyiEC?rV={d1NoY z&4guoH&^p2jyeh0s6}(5ze35Yi8YUL;2R3;ESf~tRLT3+yTy7E2Tg_kvc?8R3OsgX z5!;J-_u}{6mC~!Jx*wWNG0)OV`^_9tYKZi=%p71js(B<;&KeNch@PoBJ`hgbFTPFdCReQUa#s$P#79o7_p7OQa0 zVp-oiGA^1E)-j-)Jvqj%%Tua-8C5eq7T#_)VpZd*hIda=Pq<9Gcu}#q^SAU*EqT&} zD~{=3rc?VYHZ`W%-D`*BX0QBtVUMqBBu{Jh)DTA9sRHcbk_Z2$OchhFWA8c?GZ>!w z4}%qriS?f5yf+KvS}ZCrb5F*+{^RGgG_EmYC6Bc6_BPhTb<^MbTT!UjTBagGf&sg& z_w_^$ID%;wJ9EZk{&=XXI-gizu?pyc(5in~WW&2>!&Ue0TL`4<8-DTiYi6(oCvN1O z`ehZTriBR0Wna(Ot5eUu|2i1v^ntaqgsRTHQ{DHW^3r{IOv`Q|_tZF$4|T@7nc%tc zHw9Q@_|!86Lv9skIu+lta}J7o>cJrm*tK@|DxdNnFH_BUIUZ@Y3c80u$zCV6kAc>& z#_g6>{jpg09tKZU7q$LSk9;~c%g}8h1y*}L`A`2_;ZL{3J(WQ-Rqc)8c;Z9!e5jc? zywoAMF{NSQMc#2~)?FTVqr0x`d(ynz9azosC{iBl(b;d3LHYL4>a_gtZn69Fc9;LM zJ0DO%YyaM1RTM)a>PkqCAsIVUQh*bv3f2FfG*RVa?QMXUDet-sl6!W43s_z5X0HC8 z<>$UbIcsQS-SKw8`<8ZpxxsCWvPe5>SNC;(^NG8dkyU)iDQ$G8!=8OM#}hA`Uy#eE z4(^U9Qzvh@WK=h+7iM^oYwBg)lrf*e?n&|4%fov9R~`Fmts>SYif3VyUsaG@HfB`Q zt9#KZcsFY7!8{H&b*!z*mx7P8-J?Ev(i4}}yof}Jb(333(@ST^6rOt4Br6lTX&)c4 z>_oHXpT}5e0;%C||GZyW)H9xBSFL#CS^vt}y0c?CIQ_i$aQucufAF{3RL6CP+L^?D z|KlG>`?>-}{|-yUi*j#@O}P-V5lQ`Jx$541LU#7qyCr9%=CPu3SEIWNI2obmQ-89@ zk{aa`%IdyKL!;{PvgvEL)0n@euYJ1ANAW}(R@_xj)|-`!a&JNJ8&O|XhI`!uHr`Z)jr^MlPTJcar(&s{ zF0sbVF}2&^u>_6y)s$xHDGb<$^6s{F>%h-@)&2EU2Ns`o6{Gg{A+ML*a$@^B@MgOl z;=(Bf)wnn{uu!FOJ&t78T$TkSWrxwSu4g@aeVCG#zqpHP*2n?^-4jRlWntf4vaDIx z1Nx_|bpspr-SZ&!ER^EXp;*ggdv(lg$I@boV)x$l?r#g?%0P~ySuetCb0@UOp<|uS zI%7^lQ`zngJc?c=D5%QnU0xuZZ%<;d3|YjWPGcQLEVJ)a;l&%PNNnEQ;3Zx zL#x#5n?Dn{O7#}QM*p{eRb3{grU`F0n&lV6apCS z^NBJ0)juY&+OvB4_KySK%FfT-B21eyqLeCMCyl8rn(C{~ZiF(S7*E>oZD@#hPdk=a zzi$EVsa0Nu%TK2DpsJ=$cvHcUi(|f=m(v)X#-uo{W!hX>e?#v4k|}=E@-n(9Ea$wq zt60ZI`)&d$2kXs@_AsOto->c-a}3#qZz^+=cutly!q&Poc-h|!p_XQjY^q9cbMwBN zh+3FdO$YqP^JWHXET+7di^$@brf&QXj!ZW_jbxwrJ6{5gj|KLc2gSUx}hG&TsHh1OYb+CD&w6Y zy{dIl)uQ}OGy4#$K>Y5mB7S|eJjUWNwCdiyMMS>&GmrA8E2;%ugt5BwBZupZt@-h6 zs+WalXMZ_$LuaoutBiYo46jS4k||)`htj^=M{1x8?BReiVk|z`tDda3c3LlU-ERMQ z;sx@mN3*WwdrL|L*>mrKiEjes%C#&Zg#9b_pR@`Vg82wPTO_gP?<&J%Ppiej#7N@ zO~(;`rd(6k`CFdpK|Xw>E6knuorVx}0`b}0U2f~G+1xv&`6hq<^;sA&oquOn-NI-3 zq<%HvU#G>RUJNItSP#R!F^W|^rr;r%epoxpA^7Ae?aRY_DGr6P_9V_|c`=*c@2R54 zFpMQgWXIb322{Mqj5UkYhW9#sGmRG-sDI3*IDPMGr(PL171&zK|MJm!B5wC|tSX_^ zF`o>{fl4liRUJa}rZ_Yo`|sNtaw|i78uD4RV-~Q>n3Abi0->d)n z$9f2}C?lt8(M3G{-RT_z*zjebTF3!+yz9smpwcq^@ejQIM~opEFHRR8p~P;wFiWeR znG)A-IYp(|@|MYQ{oZ))3lr64uS>FbBIe(Hy||*bc2W&D9qf$50-x|;s&5{0!CC%U zsOwl;eb~E$>OR`SYwA~@v00T_@8-hydnHv8vm*e4WDjraYLyzwpcgc z>XXG9+j#A-I@`bVQN{QaYi|=gHph=8zfWs?>?^L7Gc&cPOg?ynTy*D^^%$!b&cdd` zd)tt6^9*yX=`r2+F9oKVO)TEsG~=4`Occ#XAY9CvB6PE`pAvV*j**F8B zKaP0pmb|P_k8w<0@D2Cfz`B$IJJ~U0a z)%5PdIv_?dClUlSV$HrT;1T~#X4?HVN0eS)r*9ZBAd;t@KwdVv9Nt39$RAb2dS8Rs8RasJdyF8m))FLJJI8fQlPT`S;eXQG{oQZ7RQim z{l3Xw&rxtTaSyrErhU@_i~O**Ka5iyd)kH)B&z*6A7RonPt|7W}{6YJV};xfq~aY`~?C$IN`%mvb7R z!TQe4Gz`v+{J$M|6WBKdD0x&#oXW%b9W%H{kJ#Xmy*te@vlAV9y;+9V?2jc+y5EFr zC(L5rsacm`#=WK4hz+>5zv@{#<=F7vS9SX)Tb;^F*eR?TTUFW1J3jo|8+q{A-P&5# zRphNyHz~Qmkb>MP;se9S*`1uU1po1bNu3>f-s{ynanzc>c&}HM9kjYH#`+R&e^U+C zCLbTTh!@X^KCbsxWNiwrgldejt zL4BZS+Lv_*U~Iql0(iuYZTs1aYke#Y@u`6JS@5!VK$Q_cW^^Cyo-|vEBad>DMOjt@`r$;P?LW_7sxOE|^SKh>vw_^Bp+s7P^j7Hpq9 znY$sN&w3cYSLHFnySpWJAb4%ZT_>O4c4OPxbIZpJz&mfIKx_Ewi1*8lnOD~o9WS1( zHk1@9omDM)Y@f2@ce7_X?Bv0E-{y~@Vc+Son5WZf%0@@vmW{d>XFWbu&4M-DRn9qi zS?^BF3sk&VZ-Vlo;_`u3OnF+nho?I#iZ8p_s6HDA@PhZ@-L2fd`WF?hkkNiz>)}rw z@$#Mps>A}a_0=qPPTR#$>bf%!D^&|7(UsjJd0wJnK5z#ptl#S*Uhm{rKm;x#(zhTkYQYi=`sTqk8qNYudQ) zOZT_D%}?y=yEJ7o-RxM_kiY*gq`QmD+Ek;XF>td6zv)PAVr)6HZZh#s3#_4)g*BV* zBT)A3m%aX$>5xsC*R#{t?z6n;r2662y}5$B*=)w}xck|dxo%KhF~{f_^CT=~+Vr(xZveAjB;KossJa&0Y{V?ToB!{dl39J)qpWqj`QLUg8&O3F;b+tT| z^)KW-`Tk|g>`ZZd$H$(8T_t7eNqIKwScHWa46vbt*j9sbT0b2}5WerN?^gl!N&_NV zFQYqy-Jhy}?h~JWRIix2AYDP2YV>dzsURCSg7Pry^6x|p4}M#l%qh+}U=3$J@ewz; zl;hz%Wz|!jb++(xOnH(Qh_~L8ym$JIovF#%Nl_%;WikY-=GMyuYw5s#f3321Qlvh0 zs1o>Y|D9kgjDWdF(3`{ke;A*S?T-o**M zo29I#ot?Fdy3DP2rp+QI^T)S5V|z1m5qEOov44fYhZ!4^yVE%xj-h+!g@W~}J^inG zr-Pzxkts@-a2S?QE*!>;C0)`g%`dT&4wjjOFeN^SP74 znnq*_IsfL8wJO@5uIpinEz5fc!duAij?RPVymd#GF&=P!{J>!%@;yw)ggZm~J9YS5 z4_P^*@B^pQ4aa=g6(#FVN!{9h)1UqOor;1|s(V=Rbq8)`q5AxIRyWCXbv{1jX+I8I zzi(_RU41dmKcC(c#66aHw->VB75izvlwBkCA)R@7oXr-HrJ-ZJ-&; zdlQ_^7$1hB(rlbrUEaG}OcC%}nJrh5VdvX~2;<94Q;-c*@;jF7zBe0BVr*#dF5OLN z8d|-}E++9pPnh>EQN1s_I*f&rxk!32HYlZc?0|B3ES^ab{G*CKW zTboYJDtXia&iVYWO2-o4beAplz-2#O!GbT9gmEjo-RFkz-nhDDK`4hROx0zfrZLbN z#*dE1l1R>&^y9sae(YOgb?eP4vD`lD#5d=8nfIN*%V}>Mo;1&(v`+8Gk~sCJwb=^$ zVou9E-d7x2jxQ4hzn*+~WMO|?-}@9)=|`<)&4x~@FZEz@2*xS|YQ0$F!F{HBI#*(i zUaN$zYwgC7=I|{CG4LJx_<`g25!ro>cSv!}i+yhk_IXiQJ!`Q#bC zcDKZ1r>I@Lz-BG`>exM#SN18%?ejd|J0IoafqyfdjWxYn^P{VZrOQ)+n#B+A{2V`? zRHMAGND+EJWcr}977KZ#tCRwLQ>2N)zxsqs2lcF;yJwdPY`^`}Hy2f;Px+14-Tdsk zZ$NAmQ8{(l^raQTf0- z>{lIedxu%9EbiTxs_U>O3FNoCczj_oHTIsd{Ox|K$oXD1v01;|mmX(J7J3fHqR1r8 zU0pjT$HDksey66J!S0y+LFf14c#;L*o;0EA(6q9ut>?$s-9b#Zs%aw1ng8agwW-8r ze)irWmRhRpam0H!B2UIA>wUdop}sI~&BKsWQ0qnHL;uuGW^3nw?!$m*eKU-8r|B_0 zg#4H;r^8Kb8JQ^RXzjeNrdW+h&&JHqu*Mu~d9cWuM+n$Z#;1<#nh*JV-^}={8jzF| z<@3H=r>b#%@8=ZeS-E1bJXE+f@5R+aq3^!Vr?(;d{B-ZPuZ!dUof7L}S;hRScK3*P z_TSvYZdjURpGtb~Y@IxixcR+(RUbf$ck!1eRB))fHQaG(s;86A5Bz#Eb-Dq?k&2~N zk-|=Uc!x|a*)LXD++OksjrG{wWE52gW48)aNqNgPenmZ&7H4OuwT@@OqrPd~ZJBo& z#Rnaxx6R4L*?SCY{gd)M7Xz}uq&(EAoOmn`RpOmbDva%v2c;@xV|G=`W2uP>4d3C# zG>^Pv&ptH0eIHA9^-MgTVkz@DT92`&hceO)RnneEbt)89+-?u|AM-6Y<8V|HGkRect!g4r|&EnE=rPIE(}2WC%O)m){U zYMZg+;_e!o@X+dWEFMF4yD@pL(|pli=E|)5JKQQ!#poeEDH2;e>hhRSYw>xfy%?n? z`}29sQE2;}J$#DmS@x6*gZ<$hTlXb}nnUCM&Eqt-`Nqr5BI?KUakPlr<@-89MT%`E zR1>OhU&i)%kqs_HH(jf9HD8T(|5+CIjy8{DZg&E>ccSs#scy|y%=yz-<{5dA$fpEW(|& zsnGuWFEO1zvW81vR)4$jVqo_+NOW;(5hsMJ1Y6mpX!R^+(_b9-Ltc&{yLu!J;SQDe znivu@?@(p$+)$Sxn0G$!W&k&|c1@1DQB_(uEg<{tpT4W$!o8=8(nUJz`<}Y&?z9@- z1Td{bt1rZd+*gFMmXWn*RX5goIlSwb-^Ob9{g*7O#5_7>{O{NZ`|5i)Z8JEOw1(?x z?dFjRy!`+fKkx0R+oue@zsO`&c)x(H$L4?ED2HbZvhRfFhsMHhf?#UT-u$89w?CTE z)RAspwVG{wo+?G^y8<-g$X2BHTn~+XUa(-Thanr{)Mv8CE0tGeY{aoCUrz6ox!W~d zWk=gtn^v+|6~=(IO7U*JdmDt#9QByR>b?EVGstn2&a35dv^exMFR<|FN%Nr@VnT>N zPVar%l)(l+ZY%sOs?~I|x>!SgSniy26X-6`-IYhPql)n!@7T7~C-j6pyrW#UZ1 z_R#OP<=M~g>9-$-1-z=bZ8Hs{9HrCjx%k*T5VV%P8o*vXApLWv> zg~c$1rCD=2opfh}jmGQTrpMSghGX0Qstqxer!h9GD=pdoZyj}17ZC~}- zPl>U>2QH0}k<6zYr@6)?=I-Lr~>efRp3kd6vzTiMYO|j(sKUMDh-LqqfPb)T_ zUA0-L7%wa^lt*W7HB;C4wOi+Q1NN+0gbhAvzB<9q=dmPjOk7U=Mmqk6<=ngEO;?F#bo0QFFTXI>Y9IS*z4Pvae6>t-|aOv?AFnEENeIR zm`r(|)!oHPh10U&D-Eg3{uOiS7@ocQ2tm56d=jYCGYDrPYYj4ydxktpGoXVqfYc_YHq&a*v@!2?a ziuBG2Cw4yH_c2wo&(Cf$#}e+E;H$^oZ`8Gp*8gITv3q+nv0_X&Vw;UApU!NGEV8@3z$C4zg!oCyx$-Ww`1%2v4({uW(_dYS1^o`WNH#u$jx& z`7GY@x#`oH96tU$y9}(HU7!36|Gls2m#QoSxEFKp$auq5s?-ax*msguAIgbO^Co+0 zY@e57XiA5t^FUn6Nxk^!oX}zC=S~L*nrN>wP45)WMvmhthW-9B*{nJpv3=j(aGJl} z9$A<>F{T@3CySRQIxlOCLF-xPvHdZ5-$8aZx0`nQQZsE#N4zZN(B93|O}5-{h`Fp& zTW1Qq<`kPnJw_pvwSC^YkG8N0dIb5zV)Dh7BQwr9G1scWicw{Rr#W?O(R64r6!fg^KQ~sL2Wm&w9fX zx}5Q4I*7}UDZ0FHv{S@B z?D2@XH*RX6@#0ecrydtcg{#KCR6r(=vgJK?x=YDiZ&X$J#e$e2FuP+=pOlsS>I3Wc zok(Ttl)en7nyGBl6VBef$NtVFYtx{(rWzKO*D$kjLo0V|mamFhe|D}rfNYm}|2<}S zt2TcB-cmX}){)1|d#mY71wT6{c~Rdu6}=iX6L@41U!7#UY(}yud+Tn+Ebe}Tg(l(W zxx1LKberYHIStG4!@>`2-8%l~F8l#n&8^g$Wc6Fe^dv1HF2=8X^0`51f0 z22IyLy}PfHJF%=OI_>K0d{SOMada&0J^@3$XWc2tXQx+;^{mt7)n4pD6NWqe-`bn| z)!XE)9`NE?{Y(`5$5X1|8y3$MbN7a^yZ70#w=X>Q-`k%_#P=$8?|6Fex@NUz!+Uk_ z#%iBFA=r91npI)5+&=9&>w7PgeVy0I@5%Qog}#ejXR`Rb?9MlY zyW!YA{&fhm)-R-1J&lD04Dr-%1_pB$z+wPL^-E_eXTkPmczOCh( zYGli1Y}OObociE?zdQK&-E_yzsTX>9`0{)>Jc--P&Gj<>JoVKOuGr+35GUv`)A?mE-X zoeAAqw?8FerEed@u(+QLy|-3(=Gamx2&RH@VNE5SXs^ba42!y{Wqm9Br%3v-=CK34DYMs z)rJpo`0ykh7n8cu+I!c&yP>a~>E4`zd}wb9J5!;h2sJCycbdsF1bQa6WnrJsw|;uV zKA$~1Htx;OoJ$i!d>jqS?xvVAh2>$*wlxhFzZ;QfS@6wXSIgTzmf`@va>Z)5$;G;x z(%u*BHr-@ljREVc7*>ku>?@|zn)STg9BSUc<$WmS;W1vY7>^j>^OGfex@_5PK5hM0 zb$2#+&8JZ6c-?2;l#bPu0x^x%q0I&MkYP_OoaP70DnhsQffGC3_B|K#ungC}yDVlJ z+>B*+Q;7ci{c`tvHN)~JJ0?SD`ckq8+qb6APL%6PXklkzx?_HE?%t-BRrbDsnArKV zI;?dWR+^0cH?3!BR>qrJB>v0DkM)GqN?XCRS8Rt8(txXa&93vtv-|m`x z_nm*7T)prU4I;ioWcH98#+@^wrUjVd#WZZ5z}Fft zb*x!|JMo=y+1Ndwo8{y8Zu5FD2B?7jaRhm@VGO(#zV~uBlta9I_A0<5KgR`+aY~WJ zH&OG_IW+EOW1U85iVr!P*(s1e{4dYl2if$tXWz5z`E$agM|ZCHQtMezm)$9F3OI&h z1r`=MJs(um+HUoiXL-C|NyM+FR3Q%-JzITwDc2#Fok(TmoJoPr=GEd9V|s}+25!bf zpPv|BR-5rt*uC$pr&#ngrh3Trlcno*6{>c+!WxqIP0KeG2>DZ^xNw)~WOPsHS<}P* z>ajJSlo@xlm`}>+S^it&H$6IIumJ!E5caBm){i(53>C^K`u zUNxO!QNOqDJBf_(Al6V{1}c!2dZ!=L*V{A}Ha=lkR=36#|EfpvvFrYjmgvNK6&}vx zX}jh6Dns|x6HvhdBUDwicP0DvC69ORn>lraoOxtHQ|&t!v5F;=t}OIJ6;Y=U;Ivv| zzKXmPnvMaAL=nV)$Iog+{yK@LIn|*iG+2eIeysz671S2mhCI0a<1~;Fr z-wJj!U&VLN;2m#OP<>)9M%m~KY*@Pqg~09EzF6=5uA96(^fI5rHg&;(j})aI@zH(2 zvm({A^)ElB01RyONjCL~eJsSQiEDjKvG7eh&5TLAxNet{0;p(1b*ZYB(<7*t*@7%Q3Z}h-BjOt=-jx=rhD!|??q)dTa* z`I|9nAXd!BhpEN?Fz?)l2hO;sH}u^|_+BBJR%*4y|RD6@iOf3JM z8vi`n{uRp@8Nz!zb$=CmIjkpE;ftb!QwQA^-FbjfT$tK1jYEvCD$AMASoR!k*h>*? zD)b*^)h+SnY;Ju5s~-o z<_cza5_nRt^TLAi=m&ptEEm1oiFRj#`wQQz)Mm4FDx632b{IXWBBC}`M0(#R*r?qhP`(Y_~PAJ?n9wR;k-Pf1wky}prMYxD3jz1wR4 zio>(%e=NO|@ZLk%#I>7@zGQFr*4I;;p~HR(qlb`DI}RYw|9R)Jj%Hu?VkXYmlogNG z^J6t!zxBpPv1yRf^5+zaYgL^OQ{L|QwNjV2D(mlYc-7T)vaGtN-My`>iaUE?)$L{J z*3y}DJ%vH>S^IssyXDN|`qA1OcYMmMDcY$p#PfMN@}&5lv~Ctojho}+Vy81Sv=~Qj zC81QGbirC(#@^lj)xT$(&HU453RtcpnQN@)WxZ_O_ibwvFXngR%Y$xGi|Vov=jAj7 zL6oiE!|}w7Gvl6w=R zLC?*{ef4ny*C$Sd)9KY(6{?Oo{4(4cFJUoXAP~z`!wiPiNkzuYJ7I?2zHSaDRi|ZL zmMTo#GE@cH`Xx(OSL)-D_vZX+eDlA5Z36N84ehl|GaPG?rSGy$$chqx^~n@fR9ju_$-1HL+5LLeS=WpC z_5}{aS!JsYBCpYdef z`-V04%4uGBr_LCF_mCZ{G~Dce^+s2R=FW58Ws6mn`s})Ky|dlgdBXxmbH$TGwtJ3! ztX6~j)}mkQ`r}SN%V^!Vvu|;#K)N5kv~Y9Tq)2t$Q)YYdbk|kx-a_k5_MH>5aXM8M zXG}^K>DT;h`pw7ZydJCSEprz7Hr-HJ`<)8Y(@t`0k;l!=c6Yv>GvVq`=TjBdLut$$ zOH1nUW)>@M5!FGL<+B5T483s)4yr*(DSPDIhY`l5L zKgGA!+n3ckeN0^@FqYNL0&2dzueyERTYjhQ_oft=Y`QCnO7SAu@0*Zpov~%E1FYF& z^0$<v%*S8!1&{zzO<~a_l{7X z*f*u(otjc{H(=N=3lrsfV)2LSIHhJD%k)&RJIp_iw{I;|?7Y+1|BQ?VEh}uJ@jKSci9Bju|&Ah!*uK?98i@?>h#IG-4ZQZ@BiZ@!7Y!`MP}X3(J3s!JX$+PaOI#Q~JIhzPpPVACJ1cGc5f~`|CbyU7jBZ z#DalNV#(Ak@AM9j&OL^2j+nci9XEHD_{&TCw3o{CmbjSG>0%vILv#0p-p_b{-{+j( zW!{Ws^H$1zph{t+Q&6@|$2X6CFMvR%aY;2pOL_UD!|kf8UHoDq&)qNDuPfoG#@>VC zRGfU`D;o;7K8|?Ansr9(H|%5S?0?CU_--rJ2^-YFOUf9=Dak$`={-Hji5^41x?180g4x{t*!)eAG*-Q7 zzZzqNR>Y+&Hp}*u-5U;@cUq{Wxc2pJvGiPBK_Rh&ahUmU)}5a0E)V`X*X)`KVf0)+ z%-X8io!PUHq%u>co@Xs@Jn?wXLbxhW@iKz@sxZcQ*Aua49U2qwp1rxqODt^?%*%a~ zF_n0f>-#NP1z*Kxe+4r`>KRBJLU6pjbnk3M$LO!s=KdYOZnj~@b$&dX&3krv5@t;4G|Z2wo3rLYHht?lHL-T)@IEioJe2hrrXiPg ze^arRTY9H}YK^fpE;>Krn4Z;)pP13nX@+`Y$#gzHyX_6vV!>dVVvK)N{(OE;|1dbO z%H`g0ywBojSy>%Ji?Z_t$^PfN$|_}_&hyD8pY)e<+*PQHPdrv5Y*d%-dhoz0?l9cE!*n&9z9Hy4!Mu+< znd{7|XWoX)E!p~b@+2&&&xsxD&VG6D_}1~_JIDBgg)*{+1X>xvxD{`9#T*XL9qMPbr)9=Gk~?zT;A4JXTLih?^f5nn|wt|kt{;#OjZRpkfq>NL4NwE?vatGA~}&*f9lZ$ z=g*Tdu*!SRt~z$AnQ-Yr*6mYfG3}PMe9GdrcN&$ET6-48w-3#!Vr2u_`}Vo}(w>~g zmdD);SFh!9lV8?h@4mrz=glWaePzJ8j*RmrEbs5RPI==Frg(%qmFU5=DbKK|0Q*(< zZWc{MnYwY{YgIa~drxFTG1X&t2G-s5tXae^TxrlcJ(yK>gnK=d<9hE3zhr4094_8j z>#*|Xh4*aY#$>@6dwL7I+e~O=+Otj>{xMGj?aOf7EQS-|w0O5FzQU(>tEdcGyA{ZI zF?MT%@8w@#9=`ilz`Olph!;1Zn7~OLK!NQ$%Ui?C%Q)Y&m}^gWv)#P78^qlb-`?G% zgF|=l!55^}eifefu7jF5tf?avbnY$s?un4zJB&`jvM24rDt_I3?34i{%l7U%lu@lz zgk~1!CZQ~jiMxBMf4zd0{JRCDH+jT{C#yLNT3G#ee;Kwq)M@9*)%M;%H_>ISvV2&p zU)s|DX`hziVx!Nq8IQ-&aO~b;t!ImFZlxMI=fe$9KE=1jb(2dzvS&X|7oUGUQpHUD zdXgsDzj&sZd;h~}EOo;Dk`LDTaXN-g-qp#vdYF=z@7NiB>NuY4=```h+{w7z``(8a z7WT!i0w!MUr5KsYUmTfIGB!MG-lRONW@8oe&Vb8wC(q)#B@LxHlFf82D)q*N3B+Pi zr+4{LW?Y-tkU{Az!54dsezL@S3S!MRrsZU9zc)bkt7%%|Z~RX0V`*oceZ9}d{;CU! zm?5M!+0A0}i;cUj__Jrt9~RTN+F}6Df z>?*_>Gmwb0^=VMW^1>b;$I=)$PIaEF=Y>Bxq;9)b+a24hAsq+|N4(QinNQ-?C=| zuRK#KzCweq^wzhq*-u%}!%i#5((=AZ>+I*nzRqfG`WH#xKq;%YvrhYZDU8_53)S?b zS(HcBC_mYG7WO(FPZWRMvO5%;kd5tAsQ#-jteOn+qaYcoNozOkG=UHM$J2Ub_ZDk& zrzh+5Y(j5J$QDXjh5o(I>Z$yAPe0Z+WucTgrer7+_EXf}wb)Q!&)&3oZzEVuTP7lp z5Sy!UvlZW;PmXPIx(~83lU4SUB}~TvuB}agC+y*)$FAz9Hjw{pB25$gS*K z>!-3XRjq&g(-#*{QiIB(pE`WC=eP4Pw5vO0dw%$@yQ{qn z&CKRke~IOb`eV}BnG$zrW1+LdXq5$h${A<+HYVt*4iz=j7=Sen4$YLsPwdJEGucos zl%L%280)5XeJN&W;4MGZYU;R&r+>_pl|D*ktgDoLnLtU2#iiAKg7mg`hAC_@`Ew&uz2$cK zq~_&+$`+sZJ-hSNv!>eRQRh16ta+h!77%oDelkQQ_+-7xS+NbFcxmlDlSD6O)7!JS zh&ddk5+{N+-feXm-ED*x!tUM(!&Ez))%4ycdxK&_RpECpr405E!(e@93>~!# z8Lp2dwit+M9m)52x;usGmW{f{fjBo4jvEss^{RaH2Om|$Wa(MAxls0{rd;h$9d}yd zn?B(*Y2t%w!|C0zeX;mieeUZLkJb6*K}F&-!S5@+tJpiT5RNdcQ#p2Wa>x- z_TPC~RfqQ8?bNsI^nPoczC9GHPW-agiN|o7dH?Q?6%!lgO0s;u=%w*2K=-&)Jrv@HK7kY{Phvus#j z{F|fv)N$@?GKEn`$A)@X^JBiN85=c-Yv+CHfEb?nnQG+fS$?c_2yAfTCj6WBo-~np zx32#`d3vjKx8rVaqVS=PQwF`|Zzl}jH@TW_FyS%Y-?t~@esPd%{`G-pk0teThS;4lchXqPxoW@?*Lt={ zyobhrL!w8jCvW{;f7SOq$Fw*Q%FdHGvc_FD>pQ!7fzS*{8TvX@rWypxX!WvI$7*-C z*v>-ORY0D{kmpnj5^T}DIM&THEsK zKY!+2HGBK{eZ$Z-F$JHPGG0Zdt5tKmdqa$e)rsCc#~ORG{PEBGZDsr|;`@!kDF&4| za=5i8>^jB8vF@(D{nZZ^XOH};hB~UmSh1_eS$NW7TUjoMEeXG!y zs}PQtt!Jsdtnd`Crg3piy{gtb8vlJOhk0)VR^}pmUP>0KLK6bB!)C@7VhI(=M(_O_eHJkq`RA$ZJJ-h5y zuXVnCHR8vE5Zso_ESQj@ASGJG)eOyzK387K*q1>2YSTV_UA8-gdp4e+m)G$$rQEdFo5#+5P4li;w(c)7^eiszTf32j#sp%s z%x|ih;AQ)&PdDBEb+D?mZ@0M4jrN@o#Z}MdMc+54r&nk1`MNWhjSi@Cdkhyx zuN24mR7btv2HMBL=CqY3c^P9@KOEHwdbjLEts?NTS=DyOww7}m)i0i%K8`U@rVpI5 z_blb+)5J*kRBt^E9mAAme|nuNe#z5Ndb0cAo4Ivau`wG$R@QQ8x;ZPWJHBG$P6oKk z$L&HsJa@ygR!#;!k;`VNahMPL&OO#*n#O8<{A@Rs@z7c~ z+;eyKUu@l;&dTJS$np!P8p#Se7~)lTi#Vj~V{06E)>=PR`SCjSPggA50>j-~@_5+U zZmkY#!XAS~^@bhazn(`T(VhIp)!nnbA+%3nA^4nv_^-P*1tIXI(zEo03v2h76yD!P?VCk$ zEtB}|mI=XoqovfVvG^}u>zkgm5BYZYj`>?Sw|C!JC{`twKaPq>M{y?$-p9r6An{ce z&ekxR(sAb;IHhcsEYrN3W9fwN_T}G`uO3-+vN(x7%Of_@wLI#?O;yTSstTJg!#BrK!-u-*(xCZi_pnlOdjKrlKDT5c<)~(!li>lU_~+8zq!#3by;5~ znC9X$Z>WbkVetwHYKMw&tve*0?BZT;v5C@!L1OWprl&OrEuGQk9X8uc~;l z&t_-)tS=vWz#Wv%ZXB_JM$Y#6;BlF5cC&GhY38zke*QPbjw8FeGmL!WLuH(wMe58H z)m@{Cbx-Bz?vC{3$-LCHs9%~;sU;8~ii-qRHeNPE&Pt{R)Q>gP$QVqOjqKqgO2SW|ZWp;xaa>(=GBdCcCt zuUqh(a@}oW-Gs4!EG^P?h`g(uZmL_=qDiXy_GN3gb@ON}tQTb~>LIvE4OdyI4%TGV zTaC2|(Ecj8s8f}-)4#l(=I8M^n9f;?Sii=QO3Oh!F?c(M?Dp@=t<82GWTxt^)hj0S z9@K2~mHpLyn&!tGkCi%cv33JzPhtE+-c)DPR}A~QLCz}4rfJZGXG1??dG4N>dPm* zG#jsa+j>4f?-cEuJ+QIqJ&qr_=0~>mq6~}MT?4Ns2@L!=Pg2yLJUzi~l9xArX=TrC z8m$I9-ODw9Dh988-4`wzg$owm?T-%=bN(qM?lDBNd@5i^_|8LoyFY;!n&Mq(wl^G{_#&=TS7%Su;MD!b!#6(r>@@2VRSoB zbt=|m=`S?P!xO8FSs9DwN)_W>#eV$resS5{8Dj4lqNi+tMgYThU&q8gbcD%egU0!zc*ptw1fAM+w{0@CHi;|jO zl!0@8+)kkMtT#RA=O-OOC6ZldC2NfKUTBRuIem7l+euZ&F_2CJ4iY$6ZTHj>ZB*@C2Y%N9Gl)DIDNW>q{`(wkIU6sow9gWtJ(10 z`RcrYMND~yT^@Ci3frGn$E3AR2&2B~Ss6iaYGQ3F@i>gT9Z`xnSHC+^-U;6wkG-fO zP0#x#tlsI_TEAj-Sxvd(mWgNWrf6vBz`h9u4?nt#pZULAMqhx~ySbIuPW*Aq-=5n{ zSXv1Ip7!`^~;!yTsi(*@$OHVLaWe{AflQTuLQ<=`y1D&5Uam$COORH;)> z;KIJCCoT-)vax>e`uZ}Py%&2@_l1n|svhR@Zqh>_Th_cxHDm8sVgX6~b`!L(qV0=Q zXW6|-#|@>17iZ}~7EsC$WAR5Pu%*^ClxePj8WXkLh%@xU!1$0e)+L;S?hJqTFyd&p-`kEsHviCy0bxtMSC8CWzBqF zQif(3SoC+t(a)`AqpwvD&i-<@j>|&Dh788z^Uej8ZythG%;Mv3IoYkk*zZMg99czq zDPF%Q`|7`#-&+OiaLZs^=>5?0DVN15_hm_zL-tnqvBDoO@QSUS?3q5^y6mQES1awh z8o2Yv3(#6Vy;1nY694(s@3Fv7-|LR2S&t`UXGYdAmYJ%4_V;DYytwE6zH(qG&S>>e zE)sqyK1N<%>61MhaijwGcoEtQui@;SJ8XAK*|q#bSv6xh_I1v3Sm(f|mjuR-DcsXd zdUj$J;TwsYC-3a-d5G_(thdBk?=0xuXUrQL6}kEHFDr-m?(JBxcKVv8FlBz6y&R}% zUS@r_325S#j}Y(@e_kJUHcrdb%lG2k9reo({ZY7eZ=P`+ zvuaP~#@y+pvz2#o%GSoSS#`EeM| zzB>tQdS5=(N^5nARMm^^m>R29@Xo2RalJVm+XZ9o0$+*|X{?5Xy&bC!83~nnV+_cF z@!vo1%ba?PN1Sn|@1_Xz#=M(<XQd)-!VQ_12{J>|vi{$;fM>O1Av?KDQ+ z8I0{|9Nxa7oA)B&$DU3;Hs)1_@vy8{eAOshA#*FMZ{fxKJT3z=ld5>vp=4&>4}o1n zPqq2cani=(820=213`UGZ!d1zs27PfFYJrks90a6iiscSsS5WHJGHC+?g-|Wsbk5U z7}(N=4qg7fw;uf=-;2*$8AyAOl)vf_2jy)3cm5bdTYMP60iPm`8;o@#dl9hVQ>|t* zWM=s|mNuUC`Wf$R+SP1`@opzf_U=8N;5`P`mCez9xzmRa>zx4aIiBZncRYH5r_||g zxW~jW?agiMWn`x@x?Z*T^I`Y+91qsLC+giw>OnC1mxZlcm0E}EnAg)Vf85x)Iv&Hv zYPV%Jy;j+zEfJ`Yw52z+Kip-^~`?EET&Z#|MJGqmnF3#A{H;F@|l|N)$5B$ds0@s$Uqo%qsID@F^uZi zT01#IqlvwYm?a2<#)%#VS~z-xb+*Hhr-u`|O;XQJHUPQ}^(I5PWI zLi_2hqS^29vhm$g@K?P0DIQqY(YNxna$OmQ)P(!I*rlAr8ZT7Yyw_A?FC1fRs_W*R zyJbbkGiIY(*Dc(mo9~V_#5g>Dmf5j}S-#8c-QZtTVyGu{8uCoF<^GWFUa~xmTf3+w zNTKda;g~qR>&;c1=-X4Die37#m$hyevdI5#8b-a)A>bu`*p|^#D)pK@et4!>tQp%| zKBw@zIrJK}r%qrW_Vz6Q@42&H%A$IM@XO2T-Psfuuio{|luKu+g@z!A>kz0LWBWqD zo{clVsQ43|44uDmZk;{<O1r8H0=w#{#>de195b-UTPstBm7V(b=MgSz$GB1VPu9+r*q{p@*{Gb5qcM%)7CZB4%++Eux|ee#Xw}Lhm_6t>5s!vs?~;|LHpmhE;ES`t}fZCqh~9 z!j27DNKdk0?XZ^*u~`YpG61(q&q76~nnm+FPP6Yf7GC}LMEqTT)C1IGb9ynhpB;@w z(|9!|_Wphgss780c|OV;1&Vhu&c;||?5(APVH4+W1FwJf&X{@&X5)fhsE!}mOv&os zJU>Rw)97)2FH?-de0961?!1$?qVkqX$2#q)$Ov8*F!Dm7#j29nOqX}FiTN0*e_4m%cERk+e#Ht zrfBG8hfPtH5v;N|@9hd1G-=U1RTeq_7uB6U^pXE6Zg`4S&f2N3R6`@LvesE_|EipY ze%YRMZp^oR%5rz$W9f}(UZz9i&I~)fCq=K=X=u4*|3)YChxjz1rqTp77@nWi&hX3z zdVM55XbVs5okL}o&2Rd^f{gG90YEX|9e zG3?^7KmN=c>mTM9t6VkSna<|$r5zpaSQ%Tgq!$z=?Z5gh8x&~wv2wi>|Lu+~d)ZyZ z$ryxIHcxxT#}EtFA&c8L=IvS>auO~TFN^a+du3~1g7aRFT0YHMdB}$r8}2P>t%@|S zbH%@L+QE4G+G!6hRb>6v(w+P7tr)&5~+-u94$gv5N?p7sGVG-Cpf0WXmc2Bo*Y&;I{)GZhCqN|rV8g8#LD*kxpr<2^g zo>>(`nIE+s{+-6G{ly`~rmUei=dONX5BQzBsRVkl( zS_pLfddaInkzSR|-d=7Ht*vIp_bN;dU;n(MG3P6sV`2Y>!CE;f4|*P(#d|*CZ+_7p zPi*@e8{aY`CiBafS-8vI>JC=*5??Zq1w|G=h1nZ-Zx@m~Yk7BOrDr;cQ?*=8;I26F zewvwv;dKtCE2@bv4B4w#TdVfXFR#nZY}Pl9CDE#=6w$X)E1{94F?JbyIbWT##%}R_ zZyh4#qg&FLx%=d+ot;T6; z58JQG)=S6Fotkg`%4ohR_k6!>O#ve6W+sYtWFt9GYgoY|G=0$+g6jkNR!p<0E?!N! ztHhTc4%s4nwZC`xIKA&Wuv0_!7(Sj@J5PBuesiD(AcL4*trR!Cq~z{J=2dDL7FAr{ z>qT_98OG_6cl|dGL@HME>QHU)PMfLv&TE;h3US)_ebrx;&`$k}9{4UFRxY}oU&j#( zkzFQt7sY5VY%8%?mh`&gXmvH4b;@!5c4GZuXmsw_;Kg`(y8Gq*{$4PmPqX?_S;tZK zID!!tES3#kjK$T{o;f~uyI#awwTO>J=S^&>w)!MRVU9i3 zWmA6aQornm2$6af<=;PjYk{z@Ul4i?#rmtVXtHbM7aq5H>(e^xbtF9t-CL5m`c@$0Brl+i-iWkfk zvpDMv_Nk7n4UJn#W6Db%Iu=Dxtgg)lhR)$BVi;B_>w@ORowA+OVb-0>!Fv;@nd~88 zGoNE;xzxpn0kdKphOvB1vBm}uPOT!+nMGt3rm<)ID&|E3Ypkk?{NNW_Ybk~wd+sJ^ zwA|U>>xC`mC@LLw^Jcvp*J625?M~3j?ZIzRYaMAA#W}o+z z>I7eur_xSd(TP5dsFB#kbElg6J+|PolbjvKy`k*1T#885Wli5jO6l$Sc1?9GLvV>N zOTP%NGOL7SoCIN^NV=1clYhwWzidKdAZ(TAFS9D*3d$d;;Sxe zRY=J7TQ>Zw>Y||0^u;@7mdV}j*w^#7b`?ASJCV&hIm(#Kv==<%!2Lx&j-_$1ugk{H zo2;ECVd*?!Lyh_F`@rUBZ;Y9`&2)sZS5q_)1D&{{h+*R@f4RPIF}+g8#(EsaUjO6W z%H6NozJK+T4bee+wWg24eGCo9eF<=rY8|c`mvuY3GuE>)Zp@DiRr&N?H%h(Z==y8l z(N}F_6yCBlpF_+BkJPsL`B{9|ADoKq+rKnnzf;3V7Sj=(R{44W^|0aZt0eo2BgNDm zS!0!A#HW&BG*&gnTYJ@^gB*ewuA2t4a1O;GH&atv$_;y`7Nrx%y;( zr%!#5#rs!jjMfQsnd5i6o|^b`r^KnT$`6;7)fIkK2OGVpN|Bk?(nB`XT&L4%v#F;o zrriU@nt$BrT(K={FwEx0dL540%TArtTPk}xFBWHDn6YLa25ZZ{Tg9n$nmeY3?B3TR z%;WkD3%rL51N<##l(4aUv{J=3uXc^6l~b;jWzcOk`&Y$#68hj-`AJnpu*`Q0mw zdC#NwR0yaHt61t5$-b|Ie0GaHmdsM3{29xKShv&eFvjm+%&36Pw78cc8<93IGbvi9 zieu+?Im1|c(Gbl|XU7?PYt7@V$onn}gFATLL4@tqSX^?C9pm?ec=NNm8w*p}mnV1I zu;1O;DPTwIoJmyK-3*X5Rnh8K)_j%FAhA zuZFxV%5G!bDDKAGaJ;XVtB&+IoAv&&SiH{p^3vB+NL5OEE?aQxJh4wBWvfgdJF{MQ zFy_ym##Pwn$328{9#eEwrMl6@&{?R)vac$NfW45^d`{(`YQV$x!oixV1H}OJMp>>YX2^$Dg0VRnVUcCfHYo|xnZ{1^* zM;4+s{`=?sS1zlTt$fd5-R!CW*I`j_8+S$w*VP-fl_eeD9^zn8KIHBce43#=_HwqI zTKUE|{f^($l-}Dq+@)Xa-v0OI)>SSC)B6;5?;yIf_Nzx{D&(S8w<5Ljt&P32VdSBh z-4d#S^uVUmTcq>@*Ydt>8&maZWB%>RCj`rZ6K!MBrE3hpz$V}B6!Bjr*=O2eDRZoi z^_a{0R@%My#xcZ)Y>HECZ>N%#H0{P&JUV4NiKiGSEgkWbPrW4U&V=|Cld*lNmmesr zW@Fm0*Tz?e_KKVBByOikRp11xQgv?1ScG?);VkrSrO+>vQ{k5<9;<6Q4R5ctt$bgG z`%4$>i+Z`4s)l9f5)0>C40jTG^_nljnjJzl7!u|2J2 zBYR~VyYVZ2`yNL_TMWGM0gHd_1h26ZA?)rgsexkRUsc7l>P=O!z{n5f6?gt2@M?kq zb{4nqD%DzQwic7AnLYicnX2DB1jVI~voUX9*z9YsZ0^=C5-c1`*4aI7bl;cvMF(r1 zyBS)k#}@Ug5>=9y?%V9)u1@%QnKzFC+AL~l*_iM9C&p6KFpPm^v;2L(xvdUa=xZUS ziMU(6W3Ic`akSZ0`=YpRLIIfJyRJB!>rkE2=Bru}y{{5Ak*+a-z2)(c=@0he2S>28 zv9Db7*(o{9_X=~q#Wn``$)2{y>b|I1D^KRf{JnX5^(>a13}2>X-bxlbjrpj18?XBO z-nlD^W#)bB-MK5yi}b3D#$v4Z*LIry_TPQOJZ54^bTRC#O9ijap-hu@!XBULQRndc zF?U_O({5O{=P_hfg{8q>|GZFA`PDfuFFVQE=%U%AaXv8_n)h$>xL|KBpY~;ccXX9q zZ2D}w(jC62!8$g@n$255y|36ine1xJ%W-{Gr2d=NJ0LrrtfXFjY4I%^5Xc>C$#W_-FDjTa&cTubjuQ} zwd|*`_v_HkTWdQLk0sv4)UFU$Ppcs7I)lc{&f77w^THUGl&!av?Y{KQ&)tBp?_>AP z5@yO?x^e=+xajtcZ3yr*mh{vZrqpUro%6%zxSN-|XNkEELCd@xN9|L_?yIXVz?MI1 zXEEz_CG)B(gmHvN3JjHgih&`VW`^<39qKJ2@s#V%c=k?5^DxkIczUDrZ)M%ed0)-* zgJEmar?D8>8}}8(UiLYT=6UC+ac^>w?)5)kSC9CLmukaGyTN1+5x4iEXK{Bzogw^I z6_;LChZ)QBrb~=v`AJW5Z_Ky;nT-s!JMZW5n3@IesyN&`eUBZnr|P~I57Dco>t@#x z_-`cysjU-Wd_c?}{^LW9v{Kw`WaDnao#^E#waA@)_*Nt4U$ml8F{uUasy$Af4q>&k zHF_#OkC%CMr<{ej^U%w+-KrHeR94*o>@u6h%cl+%53IAV)39->T?FeQu>JniHx?`F zMfkx&yjAJY^euZF-dDW$woRi|v3FsoKsUUtUH2H`<;A#D|97-z->)poKv}piA2L@B zx&y}XjpXr^vzsbhG?LmWtt`kNR%f$&96n^zPR6JQ>j^RDjs(e8 z-p!8+iyC*ljHOeVj={#f9Gq%S|LV-XWB$J0Eu!&tS-N|XJ!3_k%|macRytzmvsvN_-#2wwH&~CtfuQuy4dMz6}s-6(ysEom# zc4a2s-3g3`cJD$MWuP431zwSMi!!D({*7TvCv?!f9u_v07u)*riwEXoX&$dD*)^2# z#@@04yK^vqzO1k?KO`c;OiaIdeEW^FGWOoH)g3s^sN}SyW0;o_r}7~?WhlnZEC+A?U5Sro_Dy58P|}Ah-S;A-k1OPoh3T+_OjEz9KAgbsv*b!R;^>w z+)e|(m#H|=Ekk!z7Ee_J&83EV)mWG^ zw%4k}yf0G6_*i2@cVVEUGGSIMV{kXk7#ZIxD*mhtO&LF)>`&AAqs8Slv zUJ9fA@tutf9``$!i^*C(S%gv@mf6%bdnZB}PiMSCh5^2qYwW!}q`NC*&Io+) zsdI{H*;#EG%WF26zbucBaUhpJb3oZ?#Y#~fOZKNd7WP@?@{t}`SeH)T*MoIM>c+*( zBD(J|R$9w@XFUJ7PCwL{O?Qjf7U>wcZv%Q+b#^z=i_=*pPW!OT7RF;vgsEq}#-3ge z;y8}X>fFaJKIUC-EWfhOhP|xBMiF%1hl(!JG#~s~$1_H;sA8&An&NMnSrxKZF|o)a zpKQ|0u@i0tZ%Tu5CrD+QOJy8gl732vg2qmokpFD;nlmtSl4CWOL)6Z zVaCpn+jVH{ikUL$jun5nEZc5;)olt}tf%q2pY0yANT(QMp5t8?NHOn=0g{y8mnt!- zpVs2e+GDBc;@8T&tJ7BAnW<-_J6$vD_pfSB;jmC6FJh*KxNzHJ0|A?qFTOOZ^B7yp zqMUX9mxI%L3Xi3!V6|^2XH6bO+D>Lgf^B0Sk0oAYy&Bu8z}Cr`s$#}G*7>t?_w2>6 zIJb*EVDh$sgDs_5xB0tw)~TWT{ikm(ywD4e_7Sn2Hotl>FVksSCaP1}DyJ&IJbPWJ z+?h`qI$t)%<|8=c2yl^U#1rQ@|K!tu*gM=$8x+#r{ok= zE=43y=J8cN;0?RJ8Ako@@+xL4WuU6<&5D=V&iB0^DWKZe`8(e3^r34=%!`I^{;1II zBBJrlc8Z(T`C1uIozA@JC}KHw%wmC7Hoj9xK8oC}ws?7I7rYvaQs0LURyTqeydKy+ znYDega8k*i7`o}PQ6ur4o_IG-6KXK@Fox2JkWckkB<|kqL&?9r*rek1sbgt-%FAr! zurciCdpcvE#&CG**tt4Q-VKJ{VotuVa@TkGlUehyx{0;FPFu{o`^Y1`u_)_BDJyyD zt~9jo{7%#9K@RF_r^{aN$B~#Yk?!6Oq(0+(nHb~ON%2-yuqeBAk!gtN|z;lHody@ z#z5aIc=y)G{za}w#UAcrK)pc&uXD&+V~UJbXxL!PSr{A6B(a+BUnyD}Gs82R&F{`3 zMxB5r&DUew7X~(RUo6fKdwrRrcP!Y6Z>){Md#mWBu?Bk;jD_sw9wXZ|AG??EjhFV( zhsvKX1F0ESzS+wS8~(%@OPDFTx)K|em4E%L?CZKeG4j9YjOzZp=>2v*jxf4=H{1Cg zzPlI6v{h_%su-twd$U)y#Y0tW=J8Hs3KIh)bzeSpin`D4KUU&4J*GQ4;=62#9lMKS zx?7x!f6U$cu-?v3ciq`vSCV!5J&stEJ7YP$Sl2H%zgLTK=a{kn%YMABFD;Uk);Yr( zzgc6c?jzEa@v4FHQkDD~PKyWjH&J53hre4EvC%eL4qH#-}6>2F!vXSW<V+L6&v&NC<+$FrzEISfHD59 zG*%BGRO3~Lm{SLEe=jUl*tdEP-)oY3m9AXG^wGl5ON-ruVkG}Gh-IR|} zw^DKN>6GMiyY5EEKU~?^skmibOvlo^OeI5k-&n+#Vkym-4F;gJ({9W2vRi{OrmHr+ zIAzlM>2dv?m%hah!Bj2QyTS00$2zB|ohdxB?)$siIxB87S_P1-9p|xi7IP4d<6EqtchK3D)F)Vv*Ab!t- z?pfxYcPWeZQqZ0DR)*dAd78YxQDBdkV`+Hr6o#rwz(9Gr-Fd!QxUuM*Yn`*DDx^kv zS!@?`xigQUDIBuje%{x3ijhY*Cf-G{({=G&zmcPO^8$V`PDQFKHg)XA;uPIH-fh;Y zX#Ve?_iM{yU;N_4oS5|$zY_(X%N+KN&6_>$_I}&iDS7HWmBN_5XpJA}@BY{ez-+gv zA(%#Hz3k2V^||-26Ecj|`MH~i*%YBG#-%BBDjq89$wg|!o~4@PgXw^d~vAB#qs{vdXTlRI)t8oy5`5eDi3EO zk-sp=aoDJ@z4Qv%T;!{w;|bzd+wzn(6{K_LPP^hYlr&tXV7#b?Y`gAWz430c#%>Df z%xxv~DznI)2XzU$ELyR$;YSUK)>vf}Ih4j?tT!x+*Kg<1Y;|fZ4_`e^6)J2QQ448E zmuUR{tC!uX$MCFqk*BQhOM-P_rIV^c*TLzObvJ1%;|138o*8T7K-2THJt0_q@h6Yb!Z7p?Vqu0c|-C*NK_ShR! zUTdiUWaIQj-Odv978fzci&AmRdC4hQcdz68|j%({o9!l>1Dzw z#&Mjs^9i-Cl_uWTrpUvf>dJ)q_<_M%exN-6-7~xW&f>a5_gU=IOCBjSU0|tb>;4#X zR;5=8fpSdlg)pDXzj?hiWPKH21959#27N7z5qM%*SBeFSl1*``!ZPdYeE98~O{{I- z`59*3Pe;q(d#AZuEM3}vG3^dCHQfu=c~PBYzbubSW4Wm&@xgvRr`Fl8E5R!};uzk$ z8|nPb^C=QGacNwx`0NXVv8ZrwTxS#ujaG4V8Lx6;{+Jq*V`Sd%wPamc+bOhtL~R$H zweg*);t7-bE020&`lRyfw?4|}&zYuQj|+|gt{y^e0L!+C11 zhhaLD$IxP4PG>RBjUlP4UmIRNeXxdoKGzA^yziYULqyl5qvGfBfIC~Pp?Z8GFA+f zA_g`_+35ahiw@Y>UoIhEe)baE+LS_vR5R zW%D?K<<-1fL;SyAFIB%-m;GslNA^Xc+m;P+helt8*k1Kye)P{fU8W-);P;WRiIl;(K(Idk#$^GIiZz#>JeKyDWczznti{s4Bfm?OnnD)apd+9k0B9d zXs1_1 zs#oJvpnQrwCXA~dyBu2U?57&y$hxvfi{WriS{Xa--^pMeYP%Y%Ha2+Ct@$ywS7Vtw zpXq{fLV!68O)pzH1gCU2qiPv5{MgC+sIhKrd@S)8k7MlqzV`N{_fDb)L!<6uSaiHs zgLKC~&O`#S{hNPpfwF4tBD}ktUX?u#aLNDFHn#6(AwEp9Fk8N>0(?-)WqB`l^LLi% zvzR=V#jA`Qv*TEaUv8P`k)x zY{|Hc4&l9|L>Y4_mnzIw4S0imjE+TPUdqz@*O+4Br;Hs(R^FMdU)$fT%!TDnU>Yt8 zN~kX1vwJ-BJ;A;zsVwL>jqeN+c{*{M%rC^4g$M^UhBX?C1z89wblK~EF;aivCv7h) z-!HV*9y@Ya_Qi2nR91S&U)dBzafrJ8A%T%cqp}GtKH=KkorQIDxIC=lw(`yfeWF~^ z3VSx4iPpNmib$k#2-(KhE#0<5U$j>y|^CZ~KTyhi1Dd@*tXa(UXtIamU&&vJDmHj*E2{ z-qn4`-HZO^h(&o%KU;aXee2-06P=U+nUP6oU`*pqH#;r9^(i(^wfMyxn?B!;4=*J614gwB)d*1yKpb&2_~ zqkS$zJEK^uMm|Dlk=SbDkLS!3QjYx>CEc?Ip49Ua1+tm(RySS#kMZr`+vQvacY zakc86mt_YQ3aZlgy24@KUX9fWkAMI4Erq{T$MUcj+I);-WA!DmvdUih3Isb#<~kXfB)Rq6ur$Z%gf#u{B?HNznjs2WmFGst#O<>UGTUZoFDgt)Z=Vi-peoV z;%}u~vw+4*^Fz6)%o|}z+}KFHeB)+5@AeN_tm=l)TT3(b0R4xb@p@JL-p`#v`O!Vf zPC2o!oHT!(ly{Lp@AMF%ooE7oR?129BAMR4Jl&16II!LMGBxk)8wbnmV!Ag3W?!^34sXX4sSJ*TA%@KD?J8q;wqaWy$~g4ne)l~b z!~9}^lMT(8w-)z}-MFe5_YSeJ*UPMBFDLMPnPOpf%2@|7=Eb~~*Ku*(N!6E=;oZH* z7-PlMThKh@)t3q{v(7N~Y^c65t>At>hhbWoM$OAr+;}gZ&%MEL;1vS1wfa-1o)fLe z?Uf&$!oJ6oovw@O?!|}a<$W&`V|ht4qA3^Nq>XtChb-n#{5L;+4)?vKSj+qPn#PRX zRrp`7mjh!=h?AdqUsiWA8jC5+^FHP-t8y1ZDjkAjXud^}XWsa*N<_vqT87kn%2bK< zy;GwqObfD>_rr&)GN7ZDP3!oB1DPcf9C z<7aGM-=vmfGc59iEBjMq)zZlXqq8M@ifVkdrE|oJ&X)zQcweNu``YO}8$}f7&WM-i$Zuz4qciiIFWxUEw<&Qw%3GFf(<+4=EiHKs7J9?soGmcdn(eSI}3KUT)sx&sTp zJ&vr$ODZu6NB5@1lP3{moiZ>a)9sAgP}2+4yvSiHRYlF?Jcgh#W={>-_jf@|h_d>* zFD&xXO7(!}DPtNO=f|yz$c8^2*{s%&BRi^5wou)7`R!*7^~)vOd@bUg55}GAY@moO zIJR>!^7!6D@mXZ@Yo*9=bv&#?Te}W5ruHhazi4^c{yWdi>i~HXduZsbnBN+~IGbZ= z`G0SKr^1+<&0ebz$Sv>2RmBjGNpZkVN5*=M@gmucm`~Y&-rDsk7V0mRx}8(+7`r?> zq2i;McyUX-wRc~GD>S^vlk?;1^6nn%D#sFBB4Rt_rwyq1Gw-H!%v_&r9hDT1Ro21n z%!8W`9`cv2^`UI>nyppkUnSa`k5{8=mFn!%SUeO3i*fyLvF&|izD~eSCgslfnAwU` zo}QZ5x5tYL((DiQI`1@d8k2WXLJeJ6x;I)kk11?*z`OnxUi_4IeYAMKU!isuTI(wd zoAI+cFF*LVmu_D!z8&&v@!x;jGmksDc%(cWEWY)HW#aA^@2Te;N=17Wv3}p0eqYUd zYZf=UYLEc0K#PfQR(eSDnl%F~*8r=x6MX_3e1C!1vZwb&9i7&=`)g zp;Gx2g}aFie;LwY%ey;`v0dBAxH}8)>`y=I@yo^PFf`>?-a}KgY;^PdsGqV#88D2~ zI}2E|4^R5+-p{AZgum|ui~Qc8dT@KuYPsy3WiNJqzD&K}oP3ERyaT z(ChJbjj3`jl9agGW#JB%MPJFMobR2Yl`>v@ZZhpe!RD=132D`N7MHpc#5j1*5dAwF zeH|XyoKePKo~ra&T-Ko3IvugfsKeS51J#^$Y~XdHf$L>#_B)Nu>p*3JckwOO`v!^u zx-?HIWrsa(WCsIm_!ph{jP)QKZ0&lGai{k%h+y{p1)#mG{qp2{LA77xyy(e??CuP* z6Fc-#7MwNE59PfyRC7vjVz7sXiZ0sAEDl0%EyR3M>qUMQucor+T`c_5Rw~+kLsai+ z&pN~^#!5TcUxdfgGIG6eHwpe^o)0_Xr9Ab{+@5#$5oi6w+7Q0?QTx}o^p6;Ju3`Wh z^RYprX+=gF@3at+{#A6RVegT{dz!IJj6#w+`u@4@vG0Iij`})aPrRi5y5<!8Qdn0a+K{mgpxZyXc#wkdEgNPEjI?U+|bMJ5)E7D1@Cqm`;L)rm1a z#|Vqvu$Sd=%$sVte9~f_>b_)RA^vtpo4>ms{k*%uee5inyX7q2akg$`3`zVreTr8< z=WkqHWSyfIn|NrSu2|nX3TRfZt96kiGYR z+|_Zg+O9gc$f0q{n_ncwYOb-q4FT_YwDLVOMVA*<)UMr;#~)qKkNvB9j2Vxo^>_9< zo_$*@T4T1ykyYzoBA`oq7-OhCa2P)G;iEd8MQmnc6t~43qij?XKg0BPtM$iaAO+Bc zF*NkpPN{?!48=-!AM@RUhinxw1c!`0pNsrXb=Ab@v6M$Kv8Md0oEq@7n5KO@$s&~) z>k~yq4>-U)i|fo~k*2e7@2LvbQ|+URx958T&{y*qZGU+RFSTEu?taF;+{4HQc6XB) zer=|L<7io8DKht{YE7PtO;z)}D5gAP9ER|Xzk3qzow*wqXT0jKSo`~@uPyM2>;H&=$6yr z*m&xlm)+jXVf7R9%y%-%Qn>otBA+TH``x9EA-`{LH3Ho* z>qgt7?}%)>MTvmY#BRR#N0?4^cfT_dGaGgNs&u=W6#08FsoY6GpA956=7bO*!Dl zPVc$vju-Q+`4k`j7+waad-M8f*!q@bFWAEQy|u1C@zec`Jr+_0{1`c&>;zfa!9kI~ z-;{jGf_UCn*F(H0?AY(i-nhOyo4SiVl?KUd=7U!_`0cJe1?((l+x^Zw-NiIb#i&Y4 zr&o32iU;RPNbFg}DvigV{9J$2`B}qg&-C?X-PteG*zcQ$aXo0*=g0iCVOV~o8UKpd#8+iO0Dc>9j|%^y!@VM!nF zowx1{ji}>8mf}pm2(hT3nHGnB2u>4p3H>5mzF&J|N+~M&DJpLeU0`{Gpe&>hN=c#a zK_RBH5bK_}x6@T-H((wy$;+1|yceAcO$E5HkCl39`@3(1{LWPovl#N-To*rPHqT=b zQFdIse~+?fyyNRS{Kouy%RosfbeL-1n~?r>J>$Kx9(#IXk=I%Ibi)z(@nqIX4B41$ z-Mycj+2!tTuryda`eGUpf4rDYr*AxNS3EAx)j5suo_)7v^YYKxpWSSY-8VkkQC7hPTi)t5Ru#Oj7EZCcfh@AogX{{;b#vW= z1?-el{6>xGzW79M%uBuDcdTaLf8B!b{g*^Lb7&N2kpf zgmnNO596@&s1K&;G_tkty*w6ER(E3zxqpbm?li$>SnmwzuEw)dFjTsC_Ub#<<>*_l zJW^4b*E`Y<4Ufs`KQ!t;k4Eevkj0pj-%cT_V!IB!80xJ!Curw*SiC9 z<4z}iq^@T78}Cko8JWk%qTX%Jyt?9lx>pWpkU?WMYD6BB$Ln%#FZ~HN zYjxWHG~d>G>(?79RRt8zV)nmSzZ_2^kGb8vDDWyXt2i%oAhBGUui|xh#9+LkB!L7ChQO&Pdtjwu0yac zzBtyQm;2az&n=v`lJ9KZzX8!hS)d4b?Lh6%_4fBI!Tv)&y^o{e3S;`+iC}jbD*oNx7vFN_Ja1YB~jk7sMZ}+sY*mm}@-fh(=C9t6S_Mx;8@{Gf5#Jt$nH;y3|)SdqDlSg^3 zOUq~TDle^D+q?`J^XYzVEyUG>`Oc4_83X2Z4S6&#>bgT6#5|PwXCXrKo83-V<9?ro z+DWmzLnf>Al^$s$-9Ze&mnXFWWATL%@-j?o=dpeEUV#<9;#BL^mw)GCcTuR#*QR+j z-TwBuwaYgD^o67Oc`IfZ$K&RW^*bn+gS$nfrrC@=W9+3SxyS0UH0#|%jn#W7v5O_V z%W7Vx6V`Nfv93SC1)+V6u_V5EdA|rBc3PT+`iRN5R=hEaTCVdhBiZ+r29vDQ25Xr& zFZ0$yuNRjcHe#JpcKwS6WC1k2H#4^kV2RcVKdPMc{S4Zs|1H@M5 zM;ykRzxVZO%PfAyCvMqG@#-uN-oI+7m2yutsggPx>lY!=YiQ!jliz3Etx??ljl$Rq zDlg)YDTw(yl&{X0@o6Ylsrhnz4A}KFu^vAJqFUCRWohp1l<8(@*29hE$y$E=y~7x< z?hvA7gT32#ostdve|b6`Qc6Bl9N+xW7&eAwcek-e6Pt&`IA)BgQXOAq&Oa;^pK9KE z-6?CQ_glNzQi>Q(w|Aa&{y{)*<=&p<^?LRcW*>Suw$^n{N#k}Z8HaB*O=08WI&5m= zz1y9&y*xL+`!J5W{qWPPH5*Z|QA48s`=>83KfPe0Om=E5lCiaLV4z zaA>ZtI@=)Qhkavw{BOklo0n-}Uic0%UDx62Ot{&ZWKZW!c=gV54NEJXZRNOF#i6&b z;gO#@FRq)H&3r;&9)EpJvDOI{f4)75+q{)kg_Aj)^u%U)I2(0da*UbICO3(NRrAKuu}kL;A@76;p^^*zVcy!hTPZ?+hMoR7O@$Pg~d zb#Xf3!YZRFxLX%q^obPN4X^o7(N|rGPQC-Ecm{Ik)$s)m$nUT4nFdK3g!nzd^kV+f|iFH34WHuSCX z%3rLnFU|KwO>IS_D_DuUdY(ObjCYw8#gMNXjQ5?6#;PShX_&oSLt{LSwsO^HtX7Ic ze(hvlUvB08ZUNK2wi`TiaiUZ*o$5Trf+Auzvv?@W^W z!!~8Hm$ek+l&KQwt+A>IGmCPiiqir=Y>uaCi0@(K%}BMi%95d4U{{)et7r3_mckfvei` zWv^^fXJ|V0#s>9mZ8e8&bu2z{=$QH8^UKn#$HsE799wy>aO=_=hT2mG__I$T?*#A!#XC1cSt=sc1yQzmwC^5~Rjmn@B2wv7zYWCf!W>Xb9ZFpZC zcdFSZopx(rL(AfxzSbj+y-eB5LN}Cbii)4h!gRfTuhVpHLRp`?s$GuHT0V{&BkQh* zslh77euw;YoR9Ii8^@5x==+AlXbMwx#*5*y_nsa79iK;?lfChsKsr{q_U2sd*K5=+ z4Vrg9y@*y*Uw%ZKg-oQSv@p~SsU41hKRD=2DU}}QUKIKMi7twIB5u5qhy(ij$tRc0XIrOw`oGu}?iJjB1703<^=E{xx=^G^R1 z(-&*Fuqa2fpMH(6maU6*l?pkFsn;kL-d^MmTveA7@wy$ApG7;>l#wv=>wb?_7X8(M zkG@lU_2U$QL{!$rj#~}ytt^(iXG0Y4a#kkgy75jQKCpL@-MLt{A%DB|okMQL7w4gM zPqPo?*bc3J0ct)wUaRfp_DZ!@w4-Wh4)JQ>Bi-a({Dqc;AP!D1Q zCC>8c#!zKkx4rJA2c`!#B)ajw{P71nyklVZ3oN}=C%XLLB8<+G#x#8xH$Iklq|FfU z5*x<&ZP#)`KfIe~UDSQK5=q~Ju`M$p(86cMllj*g82}PTtqkozHqVn<;u(H*I>{PD~V=C@!Hm^2$T%OiH zjA<#B#9CgvEwaH;`%>$dC1~uFR#g;><>op9y;T?T3+24;{9K-{UQ~OU$5RTmR~^ZX z)>wq=n)9+#mUsO;KK#p^DxdZm(@$vh0Q1(uB@$z=y!aDI2;ePK@dra+o=#1?I2U5_ z&Q!ZMtDB$7)_b@AsYXrMb2_kVc^xz3U^U7{w#$y_jQ{@W?z>%A^~TP?<9g`rM78CH zenRgHR8jS^na`n=Gc{T_P=EaMiKiHL-pa_|KkxUJ<+S|Ww@Cd$j<@UGO`*3FWNvbe z?=0wkfJwNp2P5moG3_;jfgm$k*pLfqxAN`P0s>+EcbNfw%aU&nn* z<&%oz&z|v$0c+XNO0o9dnx59#V9=w>o2ur=TK7uxY_VUmj^yMtETl z83gz!Q`PTOv`CEKuK3;xI`L<}m!|Q1zKw5acsVrtZew1K<0%B2zqVs z?6KUry6$&8v5?tf#X#Dk?Y#8W3{Q3~v#KO}UH^@w%d_6#JmuGK z-Hyr~AEBa#qNz{GlKirn|9j`sj|`Z{mP{I}zF03he(K?4Yn3qn*ZbU&(%yS_d-J<< z?>OQk=44t{uxPydiyberMKew8hCIu=!=?%A$=?A|9OcU5#4zEF9$oT z;Y~Mux}%2|lOc0sqLrChoadc}Jlu$`@ej9- zXnYK@bw8@h%I>rvminZ=S`IrytxWgEGFvaD1^Dc#dxjOWr|;uxqvde#24j6A1KV5lyNog~=8 zVx2@a+Hd$4gK=-T*sT-#`&aSwj%80*WsJqKj>TDwEoiZo$24Lm6;h6zcA^sp&8Gnj z86QJDs(Bt+TUm#pg(?KIX^mo<$6}R$uX6oX8ob%)62&STXMf#;b%=Q{TIXRo>pfgf z(g3}eV@w%i(0t0yM!eLKe?EZ>JK-O)jpt=H_ezm>-pw1yBxEp}AHT~U1Q@Nm$i=di2Ux3`>dmU|^{mt2;>Xy$ zOo3*h<{PH&#@px4LG!WbW`$`sDpd^Ds%$pL5bqRs7>j|LM8SuC9}jO<_>0f9V4wG0 zOSe_0ep}V*ZQCnr9s4?B?CLc|Pr-KL-Hk5RSF4NXX6vzVxqHa7mCmNRg~;kaYO!8G zBh6O}^K)8LEo|C14pc}QR5^H>rtZ74yjS5AV=WseLH4RB7H9?wUp?wx<4uRTj@7#W zvb#s9`f#~Nv_G`Q;_Kxwo{C65V$3ZI@3WXhAQ>;`f+yXWGR<8#2ZCJ%d zy{emjbwcxy&|2BX51+@-c$ zjO@FgLEz2-0eiU*jh<)B=4FnKn@@{yLKC~#Vq;$QH11B*-DMb8-Q()MPZ_~G_Cv0Q z8|&dkCr zNN}Vs*r=#_7FLZ1{Nd_1hu88=gw6qG@0}&AZI-+1;C;qBaj< z-A0cPwXCXiK4-I>Os$*4e%(lizkTl1Q@Qz5MQ5`clQ=p7;gTiTk0ZOYI3ySK`y%4I zoVx8be*Y4)^Qm~^%jrNzVuQ*&ER>fQI;BH4FB*A|Yv*G2M&{Ym9iI5?mSL>#*%t@6 zEcd;7#`T?fy#?8)kK@Vga=%kngj*Y9yq7Mw%*k+Yb& zI$uS?a&;#cMX5?KYIkg5PQ-d>RTYc8q%{3HHm3w0oB(l86+9m|EOsU>AE#^iZs)!M zkH6*8N*M@|o|it}*M|M$xLfy7?@n)Dy_U`L8k4$O@#vyhwd)v>gSVRAZa7=Jh&azI zLaSd=Auo7sA9WxP$IvkOy}jT2ff`TAv=BagmOtvTCoJx^RSG>;@m8j=-lOc*N&2}P zlNjnrcn(>)u#$H>O{ejRmHZj;BD&satl@2CZ+tcwveU+k?>Mrj+AIoai?04Z@9)j? zy<5L8|LZ3>g5KJ0dsFQ0GK+8hVHob*QDs$>Je7qs$PdhEJQkMkt28``h5!2gIKG<( z)s%gISFP{q*v7{c#P?FtQR4|hKKRz78|ygYFi(9c7$3&)dcBlQx0`&b6!8uFo$UPM z_3xkVC|2r=Jld&9=h6AF`IuRa+^H%1bsv48dJ%WE&|QRoxXkB=|6%z5Ack6>UEZe~ zHJ2AWl}lD}LlZ?U@`ndfalgS1N0&;4x(EzpB(pj`_PKKp1~2ybS7-VbKYX%e%`!D;MKzb-h?w zFW;+P7M&pG>zn2~53R&lx=~w=JF#bf9fVD6_lBb_yH-{FXX8d`JpHYDjwc8(P@dQx z2kT*rWVf=hyD!+kKR$7Dwn-I z;VU0I+lO!c+}MjOWM=KkBW7uFcC%eG-?&D(bSP zI#LsB^W$KZWo%UT^%4CAuP}@1c$)Rj9~Saj+;YY{&U#6(d37d^GH9i>vuPzY!-7@T zRbBt)g?0GwjOk^dRbs3|IxCG~lC4;z*;wqR#IyY%;j!*2=Dr?od^Z^t&;A&)^1T<> zwH)aX#=NMY@^#-lU!_9uo>mcNJCDZjDZl^n;Fw|k{)-~_>C4B)%fa-uSVdvwPWWa2Zd6Y1V#Er6?GtzE zQS8<_N8^Ytt6vpUKhwL%9X(vk;-|Lh`_;+r;_$k;%%byn)_cW3W?kN?5Q5`~wV3eF z+Wyx|uD7P;+3W=$UpO$9aXYb5;Z=%zO^WQC8nWdb1~x@P87Wnd!6pA@Q#1XY~{DVs}Jklh+cfx5kwYqR9uw1r}2T2 z^IcT1RTZk&JS21$I}kS30aEGZfkNX(<(9X)`nWkpQql4@UXPzKv6FjT?RJV+y$N3P z&P_X+pF*unl`KSG?a*bcP*d4at-M%E&-E`h>8AQx95Hlyzz}XB!CU_1u<_jxMV~sU z=MYW_Lw@I*%4Ks5*~b|i6THX}e5$F8c3)zz(^i)4`|Qp#-S{o8@cred+{ZGFx5L{5-q*WM z+GNUOi)t{V*&tc~M*W!8v_|8aC@O~_{XADqJI#*|9t6G@9 z+h=bf+|dyv#$|(b=aZ=EE}e?*s>n+cuD^cz!V-_C9Tz z=BLsr(pbO1hp1qW50U(D#C>5Av%fa+c()PE>^H0N>jAq#!KGWIFgK#|B);&<`>}d? zcW1)KV!D&J_l=mSupal`0Ce0quJ^I`N=mC!>R4J;LR_CQ&mzRe?Q}gB2jV_O%CL91 zUF_KRuA#km@O#T#6QBR0GYHA3cK)yQuYI!@ZczI|_**igG>fi3Cpdv^I zDyW?CjuTnvTsC&YE8p)ewQuUPpMv?vgc!{C*AZyg+iPmwEq(kC!`80z8H>Zd{NOPR z#`6Mwi0MhJR&F2b=)5{tEos%tvWRi>KUtd2_|uEx-Hug@dyFiK$f=TdNZOSe;9_GG z18Ot{%3h2)wL+#|+e=q1KKA*?OSz|HHduwH&Q3w?+nsN$?%Zb&aTuI)?9J<$VW0%_ z#}o^1_w=swSE)G0$Z~lvt``A5UhhSv%T+6|o99P;w%6OM=qwf}pm^1XNoG%*FjWdN^=Gk^D?^%-YEnT6nw;z`~Lp7EFR~2 zF>P9}4&%wmmS)#qA?%w1Yj=x0(s6o$(n=^)b2eBJ_3<)R?`BWOam2f5$KATZn6}TN zoj+rDPx~0lm@&L{dt49>2TxI%1$ScY?rAIoUzW^5Xm&B}*0`8NwU|_FHhl|;v3A`zZnN~!N*SmoFjJ%|E04TquREng z@t0v5D`$FiyRzqh=k*#A}sk_TpoRqs5 zwbF@~a%kXs@Xxo|GP;Vi5)bwikG~z1BPT0dvko5ZfW1 zO3kY?Y>nx$J3X#vEEgNI(S_{w_YcJTo+4_V>j&4%{HA^mWt^!m-l10!@-dEQ4~=uF z8gufco&LrnD)&=9t<`VSgIu=ns@+cS7cmG@j7o`PDurw++!y?z+&MYEzb~gy)~~JA z2Z~lFW^;-h!|O4|YP|ZSNMrNjE}On}73;t6=jHxRQXVnJORqk-bSP{ayV;1R@j^o{g$JyDqr9p2V9@(+hsa9s)wfH}tAakmh*RNK_*}U+* zm`(+mm&LjoDem$lid3WSlutRa{ZLyPL0%@|c!HDtmSnshxP&jrlRZ(b!#=WFZ%6MvuS+YZ=A0 z@u^cT%7A|OVrd>KxUeWk=Y4%TjMK|opDL9#3(6GHa*FX|Xt<9dSnX(@ht}OGO&_UJ z1;hz{$_lO62X3?Mu_ar1$Fj9!@jXXl-?@~!b!hWEvOS$$ef2$Qth}e%PX3|UO_+_` z=3h4seQ)h!2}U_87x;w6Jm0)vEN;f?n6#_f&0c2su@=K|gTM0Y{>CSi>c#vbzi&VE z%MTm658LVuoFA{1uwi7OSJf4=#%QBu=FFV*{p*NOST`5%V zIv9W)dm(&#r7XmxsMD5Sn16U%>&2A5yDPx}S@Ueg(>b``-z{F0VdTv^Hr^lB!du4| z>HAJ)4cC{WUcq+NA4A~mwG;1eL}QV)iVHUu#czKZP4BuyXEjyDwai(&Soif|lC8)z*_bUm`de$A zw&tOKPdH~?y@1N>dukfuRrV09C!2RyZ6|7$d*1uoAp7?o5c1`e2YGDow<2}&bV?;v z1e?6LGc-@(X&{ZufKC;^IzejY1#&iOFOK9ods&5njlNYrp!t_0S_?tEOaoInUhG=N z+;O32llF|AXKcpZP6SNp>W6-rH{Z+AcsHSquFm!Gb`^E8%AN7_uv@vcbW;7PM6t5D ztPMF^r)fN@h>*+cmm?m!w}}m3Wm05$Q9ZoO{=PMIw%b+S-=32n9hx6&kY5u5vcHG^kNn^#GpagMYT>*hlM87|_> z4K_6Og&|w*8B-EocFxQm;03dVu?sc^j& z!@FNvNonQG9T9RC)YJGqQ>w_>+>48j%+X)W(Fr8x*ULodG~pR0`brrprYLFM_^U>> z##hc&CJNtTH^R9x*9My-wDJ!ZWz8*9!4DaQl`~I`(EG_kw#r`UTcjH4|hcheU zc)`|TxlXI^z{Os-JC8d-%sZb$K>e4ey=a%eJ1O+i_N`h(rSHfA`}SRg>qy4CcOFaD zbtjioiiOeG?(uHEYU&K-udfs0pvmkpR(H56=q1D&lX7Fs!gwBcRu1i|X3_0SlX>~0 zA1G-o_UH-%HtH(o-+u$|v`&XCpkz;xRk}EgzdXHqbKkFD$b268Hs;Ye_iAFZ-Aty# zW!P9>iVyFi;$UC4X*^ajP^MI3I`1!(xWQPwb|0DI)Y0(tvS;6E$cD0t%J~=Hlx6J{ zvL1Up&C9*!F%U|8q>m}ZK78B9O84fhyU&iv`zAo+VdsTMYZnnFDVRmd3hjGK!h1|& z0K<0D(L}nj4D;wqR9x^Kr&hKT1?SODyo z-ZBvINwe&iz2lmi4kdnhi2+{p2lKpiuL*&ejNK-9AA-A|iLPEwKj}oqZ~zVdAU4Ki z4C~3p_QgEDk0;37eanI~G(N@{EO$=n#_{r=6I7K-oV@K0cid3}28M9j7#q7Q+KD#H zDh*(UOuEMXwleeE;9497Dz z8uOhpbmQ271uiRTxp{vDh)H@+Z4k2m`{(`YqASHlUz+UX#1EPC{A^Zzi{t7>Ke4Nv z#r72OcBs1>=`=A(<;H*iK-^cCF}j^Zoq{MF2UE(FXp9@)m+yVYHDCUQ_`W*pX{pHx zR;|cXnvkh-<-Sl(-i{%rV{O>%#beB3A2w|2o+)JB&FUNwjLZAVO=YZk^o_EedN*C= zS_#Q%W!1%dH%nerV_syiZ1!JzjkC)*w6I(2916{p%ezh&lij&_>7=)kYEmxd^LX8b z@38Mw77-lh`%Y-whNOy`{qAy$Vi`M*#{XuGoz!Uw6Ya!%yoeK89)Etty0z=0e9BRp z!4|HEW~VZgI!1a^-)yi%SLH^RZeRTcp5=Je#pg0<1aZ5%35Wz5J%Y!gJw>uMD{A9^ zSsHH9z`<6JY!~yZQMm6rm}tt3-K||_F6+L^wZACivC~vU>lIdd6~xe615*RusGh&= zb3GNVRQD>TyXlm<-eS-0Lj1_J_>5^2b6<{Fhl}+^v7R^ncRS|&YAwZX|J}3fGXbYt2X6!fk4xP~&5W4}I^f zudnKMX-CHt1&nSiVNorwj@pUpFwI_{NSh(R-fljNy4y*0Y}Wmz_+g1@ii&BsjWSC0 z;dKtgBTnJsQ>SX&E0qG=RA5-fcK0}zSWx3x+)i$yP_m)Glq|pP1VNpI0YBUNiPezxrATaSjVyPQ0+_>gLDGowJb8 zwRy8;X=mcNU7t4Q5nA4N$BUJGP=oO?#Iu``*;T-up-`n4Jd|6UACgweO8l@j-u~~c zWIHXM)!?GIv$DGr8~fW;L~xZ0-6X#Bq4>o>7}$goyNz)aX5Bge`c?{e;_!bw#bi_b8#5s9XFv&6JusM-u*_@&{EvkzEi6A3orJ> z-WXoJnb$>Q+sSY|ohI~?{Oci&t*jRHV1A&lhOuSNKKRPE`+#|O6ImLr)hZt{%>K)f z44Ac&9wFI|Qz0)ZN(Q#;d*`1z*)K0s#@(^pee>=l<(*A`aoA38{C6knrUU`+#iU1u z(rK6CWdqkkd1vx&w!Bb&T7JJ&*&j-1oL&_9Wy$Y^eOhOQ%6d#LuG2*vhL6r(yBYJ&tB`cL~_D(PQLy8M}Kq zowA{UIzJm@7^aQ&PV=-TLSuCum+uWsOx7Mxkg;GbDthF_d>zV8-7k5ks+59v>R_YO z8uJtSae4PO^ZB<|3erW)|NYaq7s%Wjth8%?3A2-13@+K&r|d7su)7V%HjDD@bc$6y zE%tbX%T9fhp7+((f8*`T3$^XPJffRv8(!z&F?n^tCRSyq`ok|xh(sL~iE+GNKc@eB z^XWtvi#wVbw)LViQ>P!s_XVwXw!d0ve|ig}YH6NDcp=Y5q_Iu?=1-GlGHZP)FFJ;K zHuq&n99g_Ir$>gxnUNm)jxzmh?G!w`#?A(7WgFV+nE&>AZ=O1Ayy}d2ooeo#k;?hh z*Wz3KiE4S}Y5Up><|%i0jwjxo=5}Jymo4*dK=D^+wJZBj>NQ2ecRT4$)rI}jR_CR? z-a7&Wv8?8b#2q02-aq-#x6giz!)BH$_@|22b^@}&EdPsf-8Gf+&t|uvFHi2v_MEov zWpL-5IID&0hg4AJ#o2fx-qfDip`HfD(Dik-BG*u>coA&vy>4Vl#Ea&3rQjHSze(t+ z=F2MPjCqWS_Z;;aYv0bC;|OB9o8pJ`t&&b{5xj2+JQTf=ooBNbk}>A(Y>eadimNI> zFOL20RxlaI`S6=nkHv^hNq?$u;TTVSNi^mmTfTAmHd5>&gPagw! zGv=|lcLLKyyUxy@?5pVz-?u8a&+MDNL;qVm>GQB-wLXWoI%1<<6t%qR9~xX@rhVsF zx%%pz-aJ{ybk~E7MR94eimOBC;meK5#Q*BB?%aCHvi_Xb(=(hpCJcR1+Wxwq7SjJI ziiMbE%io(}`&Vz7;zNFB362-%W}yD{19iT7E+cXgCSXwQ2F7d8K(}By-3Syk;M0;oMOzW zOV9Gdmo;l#^TNBXNM%zw>n1&G(|dv)>72-^`P#{k|94 zPbWWev^g^CyPe=ajAjxuIN!)|=|Q;53ZgDOq^Kpbd=0DSHaY zUImViP96E}Zn~Q7erN5CGQD~4f^xB-h^MQuO4&c2hIn(B$9MX}n@4fd73DR{Foq}3 zijTkfIeTnVll|^HSg<~h?<7*?;_Cln?dGQLu5PQ8ysM^2o-FEnGP`T0XS~*Por{o} zDxw}w!+t7QXW3Qx>zljh$cGO$F#zNHrq_v<4%B8gyZ^u-NOMcsU|@uje}>gPw5t>M>!Vdz`_c-k%Gc-rndd-r=|n6HuOdTkZI;W<+6*ph-{;bytW%2p{9y0w?_I&0T&&VL zKc6g7O;PFk_&twQcv{_z8T#E-Fx=@qwu>pEn5<#3X5r+H8_e*IKew536~C!sUEUbR zr8>}teLg9Xy?sjOUtCHLk8Z`8SnP4ezKO&hBfsuCXGfE#ZyKI-+Q(Ua&wJkptlvAG zGdm?X`JsW{*%>=;ubDxi*CC$$`JcYRERRi<<$CufHIw)1u!_sXewy}V-1KI`hC-{A z6SVrMGn8!7VN>m|qwO2a)Q}49oLLXa2SeBrL#12mM9eME_j}jwy6im}E*%}y-D*5r zpW(%cS+%JrT~Tmx`Qg*E-96x>tNi1X9~jKW@l`+U9Px~N;t$f|)#KN*to{5dwL2ix z{KbSjdAg*t`q$ZRpP#g7txrX@h9F&f)6L!~TV~GQP!?-G%W^%y&lp8kJ<;QuH(se?yOyKaq9Pc`#SWTO8a}&Lfq1Focz34AKLqLFdJ@yuGy4snEcB8% zp5!sS*0|XI-95}>7(Y46T6W!F#!=m4H-vJw&$pWM=SgpsVU#CavXg(DQgW)*gVvrk zS;|8e#l_4iX5T3I^sM~0-nnOO)*XgB8{y|)R;ni#aWNAHXgoU>=JS&$+6+DYX04w? zsms}5$6cn(->IiIo}EpKpdQv^{_Za_t*-AWC#Q0Srg~e|Sw+Q7`Vh7AN3OCit{$or zO*Q*Nd77_oWr)|~NhC8cFXj$pBE7Sq)5pG3CUvn%U6_P`jT=L2Gb@FdC{-4#W$sCF zvFSwMe=N*?ai;|PFys^FW_$PD`Pn3%pL=U^4^Z=|D>R)Oc$zAYC6*M=_SgL0wKg}H(>5zO*hs$kmG}f?I?G)!paYF7ywBEBr03~)I5EU|h*y!nM3_-j* zarhasJO9*)jc47P__Y4`uAZi%C8^|60eS?84ry1}@dB zOVbiQ%;C#>Q)@Zx7RjcLg3axj#>5qqt(?*w)rD8qX%_bDkJah4#4}VOS)Z(4n|k7y zbXVWIb9?VCruxQ(?#Ux{r@UjLvvTp@+w#sE`+bjs##9h#`!~DPD+KaLVZG4z%_NU$6ZyrTX_sXP77tH zruZGMX~$arKWf8%T@HJ*)0&s+>YNBA28#8bH_nyn>PfMVB`BNHxS?;k4&|MjJDpfN zal_jTfy+!tGpym_v9}izFh(?6avlTc7$&nR3NgeMLd>;cU-FuFVm(ud+_L zD!xoa+P%|iZwH?YnIC+~XVYobJ>82YG7m6gd~At@AA7}>N%xB0`q@y$b;jN|cvR2T zP3?Z`Pv2c2q>A)fSFb|b=Mif|tJka5-Lt#fdG6+}x~j2VI;oa?q#Byw`{#dP?W@Zs zdX?Ylfj50qq`r2I^Sdk7X~Vb^dAV)ET08qwhiM<{rdQn}>(r#bPboXa`FB3{th;{7 zHM4rwDPFa)lOK$nHm>q=q!a#GlrIcn_C~PES79u4{*9^K9%QR4>UHt0?VA$ym)?QK zv+@Y#CW&27%5RbGPPi{p{8?q;){#F9%Yq8s0%egRI|c8pl%`qpsKe?R=T?06O^_Fp zC$60!r?~auXU{gZm;Zg?6+fokgGJ)~eRnnuLM9J3Q^CFEcrrgG*&*9o+H--C6l_$+p`CFe#Ofb7*n#rN+yN~!gVOYq# zYB`0h$H`6xSvGx-pG9BiXK``vY%&$Ya!S+P;g;of=JYClw=v#LhE(LqX80Ii{Ao)@ zI!%>f-0gj6cXM3MV`Y`NuUG1jqN@sf`^CR^+C}HX-1wYDBEE{ml)AE}LD|FIEE?7~ z%DzjnUnjB_yZUVA%wMXztf)T3{l;J{?1m>RtYUr{9yZU-cHQFVX$lJ3#*(#8ucNlR zCyU+P{Zlz_J@-z$>~3y20n+}v#@xle`tM8`Tb)L9QvXs7e{xAdVqyT+<#M+=Gp4Db zv(D$uJX!GRS^bm^Ewo?Vv0`e(OW)3ic(dg=g0dUoo?I7+WWML!*|7LS$kzOzE}m6B zrLhp5?{&gF?=8dbdpBAw$JUfP-+8N3?Cu`H*2z2sTCb(y5(zASu3Ksj5Ee_xcbc1($i`81+VMN&W3Q08&$ zj6v&ROaslGPQvAV_qyIf7WGaeHL04b_dHG$;`n)U2-ldDot!bo-unyeMV0k1-VIfD zBC*kFRawnquP=O`Ea~;~QziV4jXP`JHz;{jOBi_<)w~HAHCeC5chBw3dnh-}mhIig zbt?bM_9p##mo>ytQgMpt_YF9cN&WR&Y$k~5Vt#to z4H#mX=-uk=w!r>)!s^}qu%184iy6IrjP3q2jJL*E8t4njn8d*1-1%o_(!eaHs&S`E ztb32LOEGnaX%eSyh~?Q7_N-cA;Y0eVUKZ&Dti+w ztvOHYPO~o?{TS2EmF!hZMyoW9$HoxK&g5b*K27n@erLukj@|cW(0SuYD2v1kk7XL- zX7s8wZLm?VPmb2tyMtK2Z$Kt@3Z$dBlc`8md-2z6BI+Gg@pI4dVa*>O%k(CvW{;V;QQx)-Y+XG`~PHQURE9b zwx5lY5QtiK`ZL~4E9=#2)g0o>kScIE{_iYSDSB0X*sGzeC}H}$?*}~Q#}sBSmRrHhi_5$X!GS+IMor36`Oe8@*IHYkus@GXG5@ z=>4{$9`BaSGeKG2n7!Q)w(A5WrEUp2{eq^iiqsTi z^S-xJBbM#csZ6STis`?{2eDgGig_7V*~4%Z(qs8?cCuN8HuJ^8ca?J*VMLBj=-B@? zQ@r5m(BH|VYkSfeQcYHo@prw7kE)|B%APN?W7 z_3hrzf=cq%4FyBg9E++{blKaV_o?Qz1PR5k<|Ve|^G*k+3gopYjR8FhR zVjW9+^5%kbq&kY3M`}zZ-F2Z6>GHS^WqnLmYx>R$mBy(qi7_hS5iT^tDIOLOMK%Z<(WCB<(&q_Nx`c-ggUS%<=nKVwX#ba zvZKe4_nYTseST6i|KX;!m{udcA(vZf=p45XVOa1CW9+6pSiOHm?HLcH{y zkM(A`)!XgE;W>)t84`U2>uHEZ6AM1QA_{Bl!^gKXrs~5d%W<-AF6=RQOkD4%C!X27 zx4OD?eopCXUe>Zp(<0?xPH-;6>qq{pDf?_-js@p&itJ`3M|k+>(^|ZtC@A! zP5eX9u8PI9%3q&ulELK`%Knp~MTE~p%ZI1RO=iVeePre|I8Mege!8*!SZ8b=x66MF zjTLKijE%KwRyk^c#=e;L;YO9RmPwVt z4Ue9zN)V{KeJJ}X$`52w zhI}B|xdmTuOsjN##CI&qH|5vKs@46#llMKJUWc6Tof=c-&cv~N_Zj(Qk4#{LJiYFV4ES@PbcI?a8{;5#pn<97aio^>f@=68pzZr@BC!c(+c6w^wdT&M22vv_BY`Zec0nbz&|f;s-eViq^w zoKWr4db!Ein#SxmLs~EA*Jk$z_GWbcJ6~YnB|lEjY}`WPQN2=#Q(g^*VRu+O$TrO8 z>L*hoQ3eZ7e%?e+Vcjj+n4NWuIGz=$nO4<8tVcuHy9`ETl_q;Lw@;B(BK6rf?^7Ht zVF!L%wT4Zt%Ek1mgS#DNKkL3Wcv6PYK+iYCrzp?esi=Cg8>-V&laW7}mYt~{8_i?S zvOmR%xH$Kwj*GLo8x`Mip&k?=D$V4FPU>e|$EhcA1c6nVH0?uH&3K7lOy|?o5%*Z~ zq%RKf*pyvm_O8apbE4XpA^X`J%BGQh^P;G305VahcXH~rtM={*^Eq~w?Pd*@^&LNK zOs{Gco5Q&`DmK(D+v($cra1N(EH5bG@vK~a&6Jx&nVZPa@M89)VVzTLdB6RuzrF~) zI;-1yaDMnyiDJnkEzmB+?9C6c*qih1>u_tVc_)lD>+GpLpE!8+W$oE+SJU`n(s4hR zg*cyjat~tx;k{FKwylzPuFEa0rq8Kh>YJCT$+LB)HQeP1OHui$*X*Z6kuKJ~8Q4#W zFYlgJgYi3MS$ikvXLxqISdXmOY8DA+X_Za7dhdc_hPNpzlKzW7IprUg?BBZzFKpIlZt5|pc82-51 zEE@L3WNV_SJ6m7sQ!{1YWmv3O%arveM>}I#s&cm8sq}z-t2auTHVKO&VhS|8 z@Xo{C=!C=Y z{9o;TBJEup(=0h|A+nazFwt{Qgn zRTnplJ&9=^RcYTz#?a1K>-v*54sme|*_A_e!HV^e-;Kv^EK*WgOrxTAM)8Pe7S=4P z(9LA|@;7DfP6^j<|9RidA-P$#i6GDSMr=}qR#(>#)kV~%%<453t#9VnC9=>vb*cC| zGB@eY^D#huQ${Z{fRBj-hZ;VT%Xv2ph#byHEkDL(GHnUr%q z?R;Tl|N7gL7{vvASx~+8lr~+6MCt9bPE#t~KD72vjh>8YYe+8ZeW8ZS@3lP%jXLJt zM2tHVE`F(zA1IwD5bW8_LHp)N8S>Lipo0AHzIx7HTsS*RVRHhq=bsM4uMTm{Py0>< z_Ar=Lt?zb5R?SQK!YQJ8 zT`lxTy$*`&|Heox zcs7({`pzm`$ATL2GyD4;OSPcU6xDk$#;6(=Z1Yh@lqrkt?;K#y0t4cRSbUY_-@f{m zE4B04eiboG*c?mK?vPJ2cmGJ2Y<%er<+{!8-8100tPi3q;dA$(>^6;!V(%PNBXZsBcpQ>B0ngY17e-lV;S8W?~o`eVs=< z#=MyT&GE!q9(aQNZj`i3b9Q&Gu$|^*=FH-2@$QzX`n-7#By(l~T6cRJEXy3D3S)f6vm?AHnYmW}G?&#IqOVE&w5d_V{b&iQ-Kh1~Sb~T4UzMi#CiR|C5sCFWWpZ{ zs+`FYUrulNeX<0(-Qm6Zz!DpMZG#=t?Te2CQM-4IrT2@}ZVhalg2i%%q)mM+*Ps9C z8w-?tq#WJIBk$cw*x0on+t9g}-xJOI zZd#(6Ch>>wygQYwm&ufC?Q}0Ie6!*6I*cZpYg0C~a!UnwCi1`*cX*^K*4-j`#&r8{ z_3pMpG36lQ;U3exzo%*ct^eh}x3p8_(C)^}!i}pg<2@`p?N~q+Z+#_M7U}Y;MrC;L z9DP(-Oj>)+{xP_zW8WkdM?NZ5Of`fGTezn#{!JYEw#KN5v-ROs^X>9pR0vdAR8xS> zCqr1_n}v$U(4Frp&fk#S-N)?UPZpPtPOL-J=lqq8nO4M8+kH8M2P0!4p1fN1N)yR@FoN_@0*pLtOgk19fEsrtjn6QehSg?c5fDNgv6{X2VAjVU5b}hc{C@| z#Z5_=^M@V0@zHHaHYv&)e)h+YUDE*)Pgj5qo>Q`$j|F( zKDx=;FK2P^MgR8IHr#F<(5fSC#WkB^vS zi+_GPmtpp`;#7F{?kv?zCE2V8UM2BH8L_Je%Ff;JvfdQrp@`OUZthIUaxmND!guC$ zMD2OJ6M{lQYPT$99BR8Tis|-P#posPCRS0+*v^-3-&L3mlsL(cnxC9$?29 zWm=CdlE{76} zRlxfY^lYktwGK{k_3NrPty-Hj$Ib4j5a__N#XTGQs$jiL#*VdGrD!uMJn#GYGzNX| z0-p37j}Y%xF$Pw@VcD$Tdf!LN&y&XzfA3xIRgfyB6sxo^=QQpfCTo#&G#hwL@-*S5 zB&vO?$%ge?k#b^Te|hg@Ti&}N$%GEVrmir||Lx!J-mLHo<@K#eZ z2-y&9o_o6YEo^mJa z)3BeLtHs3ct@n+Q&CV9jxr3iKv47OhCW_2V2;QvWQKKQ6BJHad4OnCMbhWn?F{!QY zkO3`W$lQU&dXdKS-E;eP$3k6-B+rzW3L)tC8SFcK<~^1>iRF>^<#%UQ_YY6Xo34%} zyVJ4fuoXvopo&uh9g6dQz3E+Nwb*$y?l%9d-*e}EyX$vN5V#jk-?07GpT4iK<`J4@ zI-RwymvEPMcI#wOU-7azxQcE%Seq&#RxLc%(@reO`nr1qxYGcEC9T5U*glsjs?+7x9 z>Av0Y-iZuB=cj#dr)AjhpoVz8bb4gXBkwHC=jzx^a%lGTBIT!4ij*Il-8ii9TYP<2 zpT+<$xQIz_x%D+ASwn+s&qAs5^P^796K7ra?|GEoJ^Ox>X%dg8o1h}`x&56}pFH6- zZh9+`iKw2GxgIVP9dU?X%}vqE>ME6MAm&72I7vo{y=BWnE0 z&3b4Kz4O`r%f{-o^L({`dv|qW52t58S&|0?p4@bv@2V?y$mL_r;_jt-ANz1PA8s1I z9d=!%H?IQ2Do+^~m15&s9h>B4SCio0OzE{J`|sDvr#g6g3O(m&!N1#jrY0ybb7#J zU7cXC_AKQz3DqEek0WPea~aoE{Ub|v%A3}7CMLdOS`>Jvllv_P-^~wQ9WI=ub*d^? z-yT}K#nq`;l{f!pb#ZCKTCUE-s%CC^mVM`-3d$QF@ZakFI<7lYWYdhbI)#9Of8A}S zPc<+d^CBafSS`o=@>oB?6?QgGzH01Dsh`~N%T?Eu2i@dfkK%jzg}_(ySaokG4>O@i zbP%ibQ`OXuAIR9$i|xRd)`7VMySo9aF|GV#+EZIc1<<7dC`Y* znADVZ{t#ZS7T`Oi)Y$_Z_ z#f;@eW={VkHclKkIJ!I9O zFG~>f4%y;vDzK+yJ{RlGY+mfII>Q_WnIBI>yqf_py1hu<_jz$^ic70dHu?G4+krTr zUuV{ZynN1t(_UXbJ!`tru=SqY?kRZhc>Fm#Quy7Ab$PNsoV(mMGV z!ip&MmG`i$WsrAMusLDX{wj(e5mSJBPiW1cGFHQ;ggF?`re^D%O3UuvUaYd9yBL66 z&DrykceQAOxRKU*ZqxjX^-X`Anhx@|-?yVjBRc(5+c5m{mY-OUF<0)NHQgt<- ztdFI|p9(y8bCY`HKeW5!Ov!hKspLh!bKjGy=UKP^RG`+aX(ncP#Ocrfyx(1%;(6yU zUCTa?^01a4U8gZ;gth(tx5umMZmTlnM^iC!Z-WfnZ+NT@^P1Cw<+T9BG z5$)$c9i`(0+}Q zfBX0GT>bEMdDO@C!|^tq-_NJ>`}zD;x8r&F9v{t#>8|IG_wf?{`P&(Nd4$8x^vdt$ zQ9YY`*UyU|zIdjHZ~iu?ypFf-1La$u*)<2tyZY9L{kwSO(Z73s^}jrR zUBBUJUgYO=TYb}Y_4@4RtHaaPReLDH^ylGyi^Z3l}XL)ok_gp-MH-7rN{%$@sx7trn>!06!&y;`9e~#bN zL35+~N&Hlo=HC7tzdavs)n$47doZzu>tDbA%h#X2{^^(X-+lf0>wka!ukZi->FXcA z{`j5afBjzn@#}y7^6!8C{`(K#d;k3PFJJ%g^?$xC{`~cq@1L{u?>~O8{_<_}pT2GW z^S`Zs_x0btSO52W|94-1|GoNu-#`DSU%dSO>uzy1FC@4xr){)g|? PfBgRU|M>dvzo7d6YXcu> literal 0 HcmV?d00001 From 3cbf70151ef72ac0d8230b5836943f96b2298c6f Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Mon, 16 Jun 2025 10:53:50 -0500 Subject: [PATCH 09/13] lint --- .../moldev_softmax_pro/softmax_pro_data_creator.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py index 260c7ea20..fb52e8091 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py @@ -18,7 +18,11 @@ ) from allotropy.allotrope.schema_mappers.data_cube import DataCube, DataCubeComponent from allotropy.exceptions import AllotropeConversionError -from allotropy.parsers.constants import DEFAULT_EPOCH_TIMESTAMP, NOT_APPLICABLE, NEGATIVE_ZERO +from allotropy.parsers.constants import ( + DEFAULT_EPOCH_TIMESTAMP, + NEGATIVE_ZERO, + NOT_APPLICABLE, +) from allotropy.parsers.moldev_softmax_pro.constants import DEVICE_TYPE from allotropy.parsers.moldev_softmax_pro.softmax_pro_structure import ( DataElement, @@ -161,7 +165,7 @@ def _create_measurements(plate_block: PlateBlock, position: str) -> list[Measure ): measurement = _create_spectrum_measurement(plate_block, data_elements) if not measurement: - return None + return [] return [measurement] return [ From adb62818b58463418c8a617cf2ee51776921e3b4 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Tue, 17 Jun 2025 23:10:26 -0500 Subject: [PATCH 10/13] allow zero values in the measures but skipping nan values --- .../softmax_pro_data_creator.py | 29 +- .../softmax_pro_structure.py | 6 +- src/main.py | 12 + .../partial_plate_with_empty_values.json | 488 ++++++++++++++++++ 4 files changed, 526 insertions(+), 9 deletions(-) create mode 100644 src/main.py diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py index fb52e8091..a07c5717f 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py @@ -78,7 +78,12 @@ def _get_data_cube( ) ], dimensions=[data_element.elapsed_time], - measures=[data_element.kinetic_measures], + measures=[ + [ + value if value is not None else NEGATIVE_ZERO + for value in data_element.kinetic_measures + ] + ], ) @@ -87,7 +92,7 @@ def _get_spectrum_data_cube( ) -> DataCube | None: wavelengths = [data_element.wavelength for data_element in data_elements] values = [data_element.value for data_element in data_elements] - if NEGATIVE_ZERO in values: + if None in values: # Ignore the wells completely from the ASM if there is an nan value return None @@ -106,7 +111,7 @@ def _get_spectrum_data_cube( ) ], dimensions=[wavelengths], - measures=[values], + measures=[[value if value is not None else NEGATIVE_ZERO for value in values]], ) @@ -173,17 +178,29 @@ def _create_measurements(plate_block: PlateBlock, position: str) -> list[Measure type_=measurement_type, identifier=data_element.uuid, absorbance=( - data_element.value + ( + data_element.value + if data_element.value is not None + else NEGATIVE_ZERO + ) if measurement_type == MeasurementType.ULTRAVIOLET_ABSORBANCE else None ), fluorescence=( - data_element.value + ( + data_element.value + if data_element.value is not None + else NEGATIVE_ZERO + ) if measurement_type == MeasurementType.FLUORESCENCE else None ), luminescence=( - data_element.value + ( + data_element.value + if data_element.value is not None + else NEGATIVE_ZERO + ) if measurement_type == MeasurementType.LUMINESCENCE else None ), diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index 93f303ab1..d80e0e5d5 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -373,7 +373,7 @@ class DataElement: temperature: float | None wavelength: float position: str - value: float + value: float | None error_document: list[ErrorDocument] custom_info: dict[str, str] = field(default_factory=dict) elapsed_time: list[float] = field(default_factory=list) @@ -422,7 +422,7 @@ def create( temperature=temperature, wavelength=wavelength, position=str(position), - value=NEGATIVE_ZERO if value is None else value, + value=value, error_document=( [ErrorDocument(str(raw_value), header.read_mode)] if value is None @@ -702,7 +702,7 @@ def create( temperature=temperature, wavelength=wavelength, position=str(position), - value=NEGATIVE_ZERO if value is None else value, + value=value, error_document=error_document, ) diff --git a/src/main.py b/src/main.py new file mode 100644 index 000000000..23fbf08bb --- /dev/null +++ b/src/main.py @@ -0,0 +1,12 @@ +from allotropy.parser_factory import Vendor +from allotropy.testing.utils import from_file + +file_name = "partial_plate_with_empty_values.txt" + +test_filepath = f"../tests/parsers/moldev_softmax_pro/testdata/{file_name}" +test_output_file = f"{test_filepath.replace('txt', 'json')}" +allotrope_dict = from_file(test_filepath, Vendor.MOLDEV_SOFTMAX_PRO) + +# print(json.dumps(allotrope_dict, indent=4, ensure_ascii=False)) +# with open(test_output_file, "w", encoding="utf-8") as output_file: +# output_file.write(json.dumps(allotrope_dict, indent=4, ensure_ascii=False)) diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json index cbe34fa16..f265d5628 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json @@ -1161,6 +1161,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_19", + "sample document": { + "location identifier": "A20", + "sample identifier": "plate A20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.82, 0.482, 0.617, 3.813, 3.252, 3.519, 2.478, 0.047, 0.805, 3.364, 3.065, 1.876, 1.973, 2.234, 3.863, 2.221, 0.009, 2.243, 2.328, 3.268, 3.595, 3.122, 2.418, 2.947, 1.968, 3.837, 1.167, 1.576, 1.549, 1.258, 3.867, 3.958, 0.876, 1.273, 0.043, 1.239, 2.606, 3.714, 2.612, 1.723, 3.789, 0.57, 2.725, 0.317, 0.0, 3.495, 0.136, 0.837, 3.728, 0.728, 2.677] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 524.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -1344,6 +1405,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_23", + "sample document": { + "location identifier": "A24", + "sample identifier": "plate A24", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.009, 1.525, 2.429, 1.447, 1.515, 2.38, 0.424, 2.954, 0.0, 1.417, 1.967, 0.029, 3.872, 1.468, 0.716, 3.953, 2.077, 1.703, 1.165, 0.242, 2.714, 0.457, 3.218, 0.692, 0.524, 1.885, 3.349, 0.61, 1.747, 3.839, 3.705, 2.922, 0.824, 0.916, 2.875, 3.231, 2.123, 1.557, 3.462, 1.122, 2.726, 1.781, 3.881, 1.672, 3.307, 0.211, 1.03, 3.35, 3.074, 2.873, 3.885] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 550.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -2686,6 +2808,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_47", + "sample document": { + "location identifier": "B23", + "sample identifier": "plate B23", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [0.772, 1.556, 0.299, 1.489, 0.0, 2.22, 1.316, 2.927, 0.223, 2.831, 2.956, 0.829, 0.086, 3.236, 1.914, 0.275, 3.224, 3.745, 1.088, 3.13, 3.235, 1.061, 0.424, 0.917, 0.493, 3.186, 3.97, 0.264, 0.766, 2.711, 3.265, 0.109, 1.976, 1.663, 3.944, 3.559, 0.979, 2.76, 2.285, 1.767, 0.388, 2.135, 3.312, 0.028, 0.935, 0.644, 0.674, 3.919, 3.96, 1.333, 0.865] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 568.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -5736,6 +5919,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_101", + "sample document": { + "location identifier": "E2", + "sample identifier": "plate E2", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.939, 0.693, 3.05, 1.434, 2.475, 3.975, 2.924, 0.453, 2.094, 1.867, 0.102, 2.135, 3.446, 0.169, 1.021, 0.533, 3.276, 1.414, 3.77, 3.313, 3.348, 1.818, 3.159, 3.996, 2.878, 1.656, 0.675, 0.374, 3.662, 2.716, 1.615, 1.411, 1.139, 0.901, 1.427, 1.089, 2.05, 3.491, 2.117, 1.294, 2.921, 1.837, 0.109, 0.0, 2.532, 3.887, 3.506, 3.388, 2.194, 0.932, 0.127] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 566.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -9762,6 +10006,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_170", + "sample document": { + "location identifier": "G21", + "sample identifier": "plate G21", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.936, 3.539, 0.528, 0.24, 0.772, 2.106, 2.777, 0.759, 2.061, 2.114, 3.164, 2.961, 2.114, 3.515, 1.435, 0.323, 1.408, 1.347, 0.077, 0.049, 1.521, 2.446, 3.797, 0.729, 1.116, 2.271, 0.714, 2.833, 2.938, 1.936, 3.944, 0.863, 0.469, 1.979, 3.242, 0.824, 0.442, 1.453, 0.05, 0.0, 1.688, 3.089, 1.841, 2.571, 0.419, 3.656, 1.565, 0.756, 2.461, 2.587, 1.985] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 549.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -10372,6 +10677,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_182", + "sample document": { + "location identifier": "H8", + "sample identifier": "plate H8", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [3.571, 0.793, 2.192, 1.293, 3.81, 3.722, 1.127, 0.812, 0.714, 0.995, 0.992, 2.364, 2.086, 0.99, 1.72, 2.258, 2.255, 0.656, 2.762, 2.866, 0.442, 2.208, 3.3, 0.575, 2.41, 3.444, 3.794, 2.061, 1.974, 2.312, 2.555, 2.759, 1.066, 1.08, 2.574, 3.243, 2.492, 0.0, 0.772, 1.883, 0.288, 1.828, 3.575, 2.558, 3.77, 3.358, 3.02, 1.534, 2.514, 1.763, 2.478] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 565.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -13971,6 +14337,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_244", + "sample document": { + "location identifier": "J20", + "sample identifier": "plate J20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.6, 3.371, 2.363, 2.653, 2.313, 1.926, 0.787, 3.468, 1.075, 3.262, 3.721, 0.0, 3.59, 0.803, 2.329, 3.245, 0.182, 3.662, 2.927, 0.199, 0.267, 3.115, 0.651, 1.224, 2.903, 0.971, 3.882, 0.395, 0.074, 1.053, 0.559, 0.566, 3.633, 3.235, 2.132, 2.234, 2.525, 2.178, 2.555, 2.201, 1.892, 0.009, 0.199, 2.111, 0.126, 3.898, 2.256, 1.525, 3.223, 2.113, 2.89] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 553.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ @@ -18302,6 +18729,67 @@ } } }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_319", + "sample document": { + "location identifier": "M20", + "sample identifier": "plate M20", + "well plate identifier": "plate" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } + ], + "measures": [ + { + "@componentDatatype": "double", + "concept": "absorbance", + "unit": "mAU" + } + ] + }, + "data": { + "dimensions": [ + [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] + ], + "measures": [ + [1.871, 0.802, 1.977, 3.137, 1.151, 0.0, 3.376, 3.635, 3.502, 1.746, 1.357, 0.853, 0.548, 0.83, 3.979, 2.291, 3.864, 2.066, 3.112, 2.536, 3.112, 3.198, 0.064, 0.185, 2.408, 0.471, 3.455, 1.843, 2.57, 0.422, 3.596, 2.171, 3.667, 1.902, 1.346, 3.096, 0.023, 1.714, 1.202, 3.474, 3.88, 2.162, 1.805, 3.307, 0.389, 3.183, 1.22, 2.832, 2.957, 1.972, 2.247] + ] + } + } + } + ], + "measurement time": "1955-01-08T13:54:10+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "container type": "well plate" + }, + "custom information document": { + "maximum wavelength signal": { + "value": 527.0, + "unit": "nm" + } + } + }, { "measurement aggregate document": { "measurement document": [ From 548e3e2063365e6188d37b7096ef10737566c2b3 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Tue, 17 Jun 2025 23:11:35 -0500 Subject: [PATCH 11/13] --ammend --- src/main.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/main.py diff --git a/src/main.py b/src/main.py deleted file mode 100644 index 23fbf08bb..000000000 --- a/src/main.py +++ /dev/null @@ -1,12 +0,0 @@ -from allotropy.parser_factory import Vendor -from allotropy.testing.utils import from_file - -file_name = "partial_plate_with_empty_values.txt" - -test_filepath = f"../tests/parsers/moldev_softmax_pro/testdata/{file_name}" -test_output_file = f"{test_filepath.replace('txt', 'json')}" -allotrope_dict = from_file(test_filepath, Vendor.MOLDEV_SOFTMAX_PRO) - -# print(json.dumps(allotrope_dict, indent=4, ensure_ascii=False)) -# with open(test_output_file, "w", encoding="utf-8") as output_file: -# output_file.write(json.dumps(allotrope_dict, indent=4, ensure_ascii=False)) From 18d85d57d6ea6cc1f4a8fb46d66ac0f9e9e34e74 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Wed, 18 Jun 2025 14:10:56 -0500 Subject: [PATCH 12/13] added logic to allow nan values in the data cube as -0.0, add error documents --- .../softmax_pro_data_creator.py | 10 +- .../partial_plate_with_empty_values.json | 21 +- .../partial_plate_with_empty_values.txt | Bin 231240 -> 231228 bytes .../testdata/spectrum_data.json | 9184 ++++++++++++++++- 4 files changed, 8939 insertions(+), 276 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py index a07c5717f..47407e8df 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py @@ -92,8 +92,8 @@ def _get_spectrum_data_cube( ) -> DataCube | None: wavelengths = [data_element.wavelength for data_element in data_elements] values = [data_element.value for data_element in data_elements] - if None in values: - # Ignore the wells completely from the ASM if there is an nan value + if all(value is None for value in values): + # Ignore the wells completely from the ASM if all values are None return None return DataCube( @@ -123,6 +123,10 @@ def _create_spectrum_measurement( spectrum_data_cube = _get_spectrum_data_cube(plate_block, data_elements) if not spectrum_data_cube: return None + error_documents = [] + for data_element in data_elements: + error_documents.extend(data_element.error_document) + return Measurement( type_=measurement_type, identifier=first_data_element.uuid, @@ -150,7 +154,7 @@ def _create_spectrum_measurement( total_measurement_time_setting=plate_block.header.read_time, read_interval_setting=plate_block.header.read_interval, number_of_scans_setting=plate_block.header.kinetic_points, - error_document=first_data_element.error_document, + error_document=error_documents, measurement_custom_info=first_data_element.custom_info, ) diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json index f265d5628..49380189c 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json @@ -20,6 +20,22 @@ "sample identifier": "plate A1", "well plate identifier": "plate" }, + "error aggregate document": { + "error document": [ + { + "error": "???", + "error feature": "Absorbance" + }, + { + "error": "???", + "error feature": "Absorbance" + }, + { + "error": "???", + "error feature": "Absorbance" + } + ] + }, "absorption spectrum data cube": { "label": "absorbance-spectrum", "cube-structure": { @@ -43,7 +59,10 @@ [520.0, 521.0, 522.0, 523.0, 524.0, 525.0, 526.0, 527.0, 528.0, 529.0, 530.0, 531.0, 532.0, 533.0, 534.0, 535.0, 536.0, 537.0, 538.0, 539.0, 540.0, 541.0, 542.0, 543.0, 544.0, 545.0, 546.0, 547.0, 548.0, 549.0, 550.0, 551.0, 552.0, 553.0, 554.0, 555.0, 556.0, 557.0, 558.0, 559.0, 560.0, 561.0, 562.0, 563.0, 564.0, 565.0, 566.0, 567.0, 568.0, 569.0, 570.0] ], "measures": [ - [2.672, 0.563, 0.502, 2.091, 0.673, 1.05, 2.897, 2.051, 0.694, 3.045, 0.938, 1.029, 2.022, 1.28, 1.523, 1.04, 2.069, 0.141, 3.256, 2.308, 1.589, 0.608, 0.36, 2.82, 3.264, 2.159, 0.176, 2.844, 0.591, 3.624, 2.77, 2.065, 0.745, 0.166, 1.232, 2.332, 3.284, 0.015, 2.142, 3.22, 2.993, 1.538, 0.596, 0.105, 0.204, 3.126, 2.505, 0.46, 0.999, 3.089, 1.158] + [ + -0.0, 0.563, 0.502, + -0.0, 0.673, 1.05, 2.897, + -0.0, 0.694, 3.045, 0.938, 1.029, 2.022, 1.28, 1.523, 1.04, 2.069, 0.141, 3.256, 2.308, 1.589, 0.608, 0.36, 2.82, 3.264, 2.159, 0.176, 2.844, 0.591, 3.624, 2.77, 2.065, 0.745, 0.166, 1.232, 2.332, 3.284, 0.015, 2.142, 3.22, 2.993, 1.538, 0.596, 0.105, 0.204, 3.126, 2.505, 0.46, 0.999, 3.089, 1.158] ] } } diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.txt index b9727d1d5657c397df81af9d8e09a1aac748ddb5..1f72ab58e1400f704756f216edef5391d7378ad2 100644 GIT binary patch delta 54 xcmX@n$G4}CZ$k$ot33k{Zl1_!ZvtiBG;MT+Fq@OB+movqftYD~ay9c)ZUE9M5itM& delta 54 zcmdnf$9JNSZ$k$orxAl5gBgQ4gVE+*MthUVDgOmF-!QFmoqVK6pgFF(J+7J&h?%y> JRWsk?1^@@S6U6`k diff --git a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json index 249f8d979..8e5aefce8 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json +++ b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json @@ -25,6 +25,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -113,6 +161,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -201,6 +297,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -289,6 +433,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -377,6 +569,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -480,22 +720,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -553,6 +841,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -641,6 +977,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -729,6 +1113,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -817,6 +1249,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -905,6 +1385,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -993,6 +1521,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1081,6 +1657,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1169,6 +1793,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1257,6 +1929,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1360,22 +2080,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -1433,6 +2201,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1521,6 +2337,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1609,6 +2473,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1697,6 +2609,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1785,6 +2745,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1873,6 +2881,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -1961,6 +3017,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -2049,6 +3153,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -2137,6 +3289,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -2305,22 +3505,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -2443,6 +3691,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -2596,6 +3892,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -2749,6 +4093,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -2902,6 +4294,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -3055,6 +4495,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -3208,6 +4696,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -3361,6 +4897,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -3514,6 +5098,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -3667,6 +5299,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -3835,22 +5515,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -3973,6 +5701,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4061,6 +5837,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4149,6 +5973,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4237,6 +6109,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4325,6 +6245,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4413,6 +6381,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4501,6 +6517,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4589,6 +6653,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4677,6 +6789,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4780,22 +6940,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -4853,6 +7061,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -4941,6 +7197,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5029,6 +7333,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5117,6 +7469,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5205,6 +7605,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5293,6 +7741,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5381,6 +7877,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5469,6 +8013,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5557,6 +8149,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5660,22 +8300,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -5733,6 +8421,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5821,6 +8557,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5909,6 +8693,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -5997,6 +8829,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -6085,6 +8965,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -6238,6 +9166,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -6391,6 +9367,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -6544,6 +9568,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -6697,6 +9769,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -6865,22 +9985,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -7003,6 +10171,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -7156,6 +10372,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -7309,6 +10573,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -7462,6 +10774,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -7615,6 +10975,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -7768,6 +11176,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -7921,6 +11377,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8009,6 +11513,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8097,6 +11649,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8200,22 +11800,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -8273,6 +11921,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8361,6 +12057,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8449,6 +12193,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8537,6 +12329,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8625,6 +12465,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8713,6 +12601,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8801,6 +12737,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8889,6 +12873,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -8977,6 +13009,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9080,22 +13160,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -9153,6 +13281,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9241,6 +13417,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9329,6 +13553,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9417,6 +13689,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9505,6 +13825,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9593,6 +13961,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9681,6 +14097,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9769,6 +14233,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9857,6 +14369,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -9960,22 +14520,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -10033,6 +14641,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -10186,6 +14842,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -10339,6 +15043,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -10492,6 +15244,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -10645,6 +15445,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -10798,6 +15646,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -10951,6 +15847,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -11104,6 +16048,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -11257,6 +16249,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -11425,22 +16465,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -11563,6 +16651,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -11716,6 +16852,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -11869,6 +17053,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -11957,6 +17189,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12045,6 +17325,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12133,6 +17461,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12221,6 +17597,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12309,6 +17733,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12397,6 +17869,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12500,22 +18020,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -12573,6 +18141,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12661,6 +18277,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12749,6 +18413,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12837,6 +18549,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -12925,6 +18685,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13013,6 +18821,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13101,6 +18957,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13189,6 +19093,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13277,6 +19229,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13380,22 +19380,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -13453,6 +19501,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13541,6 +19637,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13629,6 +19773,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13717,6 +19909,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13805,6 +20045,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13893,6 +20181,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -13981,6 +20317,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -14134,6 +20518,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -14287,6 +20719,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -14455,22 +20935,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -14593,6 +21121,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -14746,6 +21322,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -14899,6 +21523,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15052,6 +21724,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15205,6 +21925,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15358,6 +22126,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15511,6 +22327,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15664,6 +22528,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15817,6 +22729,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -15920,22 +22880,70 @@ { "error": "Error", "error feature": "Std.Dev." - } - ] - }, - "compartment temperature": { - "value": 23.5, - "unit": "degC" - }, - "absorption spectrum data cube": { - "label": "absorbance-spectrum", - "cube-structure": { - "dimensions": [ - { - "@componentDatatype": "double", - "concept": "wavelength", - "unit": "nm" - } + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + } + ] + }, + "compartment temperature": { + "value": 23.5, + "unit": "degC" + }, + "absorption spectrum data cube": { + "label": "absorbance-spectrum", + "cube-structure": { + "dimensions": [ + { + "@componentDatatype": "double", + "concept": "wavelength", + "unit": "nm" + } ], "measures": [ { @@ -15993,6 +23001,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16081,6 +23137,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16169,6 +23273,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16257,6 +23409,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16345,6 +23545,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16433,6 +23681,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16521,6 +23817,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16609,6 +23953,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16697,6 +24089,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16785,6 +24225,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16873,6 +24361,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -16961,6 +24497,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17049,6 +24633,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17121,22 +24753,70 @@ "device control aggregate document": { "device control document": [ { - "device type": "plate reader", - "detection type": "Absorbance" - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_215", - "sample document": { - "location identifier": "I16", - "sample identifier": "SAMP567582", - "well plate identifier": "Plate1", - "custom information document": { - "group identifier": "SAMP567582" - } - }, - "error aggregate document": { - "error document": [ + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_215", + "sample document": { + "location identifier": "I16", + "sample identifier": "SAMP567582", + "well plate identifier": "Plate1", + "custom information document": { + "group identifier": "SAMP567582" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17225,6 +24905,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17313,6 +25041,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17401,6 +25177,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17489,6 +25313,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17577,6 +25449,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17665,6 +25585,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17753,6 +25721,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17841,6 +25857,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -17929,6 +25993,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -18066,22 +26178,70 @@ "device control aggregate document": { "device control document": [ { - "device type": "plate reader", - "detection type": "Absorbance" - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_227", - "sample document": { - "location identifier": "J3", - "sample identifier": "SAMP567634", - "well plate identifier": "Plate1", - "custom information document": { - "group identifier": "SAMP567634" - } - }, - "error aggregate document": { - "error document": [ + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_227", + "sample document": { + "location identifier": "J3", + "sample identifier": "SAMP567634", + "well plate identifier": "Plate1", + "custom information document": { + "group identifier": "SAMP567634" + } + }, + "error aggregate document": { + "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -18235,6 +26395,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -18388,6 +26596,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -18541,6 +26797,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -18694,6 +26998,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -18847,6 +27199,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -19000,6 +27400,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -19153,6 +27601,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -19306,6 +27802,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -19459,6 +28003,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" @@ -19612,6 +28204,54 @@ }, "error aggregate document": { "error document": [ + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, + { + "error": "Error", + "error feature": "CV%" + }, + { + "error": "Error", + "error feature": "MeanResult" + }, + { + "error": "Error", + "error feature": "Result" + }, + { + "error": "Error", + "error feature": "Std.Dev." + }, { "error": "Error", "error feature": "CV%" From 86d0627a1d46b24c851880f6a2780a97054861d5 Mon Sep 17 00:00:00 2001 From: Joshua Hernandez Date: Fri, 20 Jun 2025 03:06:10 -0500 Subject: [PATCH 13/13] fixed error documents --- .../softmax_pro_data_creator.py | 13 +- .../softmax_pro_structure.py | 16 +- .../partial_plate_with_empty_values.json | 6 +- .../testdata/spectrum_data.json | 8704 +---------------- 4 files changed, 62 insertions(+), 8677 deletions(-) diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py index 47407e8df..a2692c4df 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_data_creator.py @@ -11,6 +11,7 @@ ) from allotropy.allotrope.models.shared.definitions.units import UNITLESS from allotropy.allotrope.schema_mappers.adm.plate_reader.rec._2025._03.plate_reader import ( + ErrorDocument, Measurement, MeasurementGroup, MeasurementType, @@ -123,9 +124,19 @@ def _create_spectrum_measurement( spectrum_data_cube = _get_spectrum_data_cube(plate_block, data_elements) if not spectrum_data_cube: return None + + # Collect error documents and update error_feature to include wavelength with unit error_documents = [] for data_element in data_elements: - error_documents.extend(data_element.error_document) + for error_doc in data_element.error_document: + if error_doc.error_feature == plate_block.header.read_mode: + updated_error_doc = ErrorDocument( + error=error_doc.error, error_feature=f"{data_element.wavelength}nm" + ) + error_documents.append(updated_error_doc) + else: + # Keep original error_feature for non-spectrum data cube errors + error_documents.append(error_doc) return Measurement( type_=measurement_type, diff --git a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py index d80e0e5d5..b0f0dfa87 100644 --- a/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py +++ b/src/allotropy/parsers/moldev_softmax_pro/softmax_pro_structure.py @@ -1299,12 +1299,26 @@ def create(reader: CsvReader) -> StructureData: # experiment, there is no way at the moment to link the group data with a plate. continue plate_block = block_list.plate_blocks[group_data_element.plate] + is_spectrum = ( + plate_block.header.read_type == ReadType.SPECTRUM.value + ) + processed_positions = set() + for data_element in plate_block.iter_data_elements( group_data_element.positions ): data_element.group_id = group_block.group_data.name data_element.sample_id = group_data_element.sample - data_element.error_document += group_data_element.errors + + # For spectrum measurements, only add errors to the first DataElement per well + if ( + not is_spectrum + or data_element.position not in processed_positions + ): + data_element.error_document += group_data_element.errors + if is_spectrum: + processed_positions.add(data_element.position) + data_element.custom_info.update(group_data_element.custom_info) return StructureData( diff --git a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json index 49380189c..a420910c7 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json +++ b/tests/parsers/moldev_softmax_pro/testdata/partial_plate_with_empty_values.json @@ -24,15 +24,15 @@ "error document": [ { "error": "???", - "error feature": "Absorbance" + "error feature": "520.0nm" }, { "error": "???", - "error feature": "Absorbance" + "error feature": "523.0nm" }, { "error": "???", - "error feature": "Absorbance" + "error feature": "527.0nm" } ] }, diff --git a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json index 8e5aefce8..249f8d979 100644 --- a/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json +++ b/tests/parsers/moldev_softmax_pro/testdata/spectrum_data.json @@ -25,54 +25,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -161,54 +113,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -297,54 +201,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -433,54 +289,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -569,54 +377,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -705,54 +465,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -841,54 +553,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -977,54 +641,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1113,54 +729,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1249,54 +817,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1385,54 +905,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1521,54 +993,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1657,54 +1081,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1793,54 +1169,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -1929,54 +1257,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2065,54 +1345,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2201,54 +1433,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2337,54 +1521,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2473,54 +1609,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2609,54 +1697,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2745,54 +1785,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -2881,54 +1873,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -3017,54 +1961,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -3153,54 +2049,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -3289,54 +2137,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -3490,54 +2290,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -3691,54 +2443,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -3892,54 +2596,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -4093,54 +2749,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -4294,54 +2902,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -4495,54 +3055,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -4696,54 +3208,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -4897,54 +3361,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -5098,54 +3514,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -5299,54 +3667,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -5500,54 +3820,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -5701,54 +3973,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -5837,54 +4061,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -5973,54 +4149,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6109,54 +4237,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6245,54 +4325,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6381,54 +4413,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6517,54 +4501,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6653,54 +4589,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6789,54 +4677,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -6925,54 +4765,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7061,54 +4853,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7197,54 +4941,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7333,54 +5029,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7469,54 +5117,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7605,54 +5205,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7741,54 +5293,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -7877,54 +5381,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8013,54 +5469,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8149,54 +5557,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8285,54 +5645,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8421,54 +5733,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8557,54 +5821,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8693,54 +5909,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8829,54 +5997,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -8965,54 +6085,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -9166,54 +6238,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -9367,54 +6391,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -9568,54 +6544,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -9769,54 +6697,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -9970,54 +6850,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -10171,54 +7003,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -10372,54 +7156,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -10573,54 +7309,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -10774,54 +7462,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -10975,54 +7615,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -11176,54 +7768,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -11377,54 +7921,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -11513,54 +8009,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -11649,54 +8097,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -11785,54 +8185,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -11921,54 +8273,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12057,54 +8361,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12193,54 +8449,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12329,54 +8537,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12465,54 +8625,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12601,54 +8713,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12737,54 +8801,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -12873,54 +8889,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13009,54 +8977,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13145,54 +9065,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13281,54 +9153,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13417,54 +9241,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13553,54 +9329,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13689,54 +9417,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13825,54 +9505,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -13961,54 +9593,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -14097,54 +9681,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -14233,54 +9769,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -14369,54 +9857,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -14505,54 +9945,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -14641,54 +10033,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -14842,54 +10186,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -15043,54 +10339,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -15244,54 +10492,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -15445,54 +10645,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -15646,54 +10798,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -15847,54 +10951,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -16048,54 +11104,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -16249,54 +11257,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -16450,54 +11410,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -16651,54 +11563,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -16852,54 +11716,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17053,54 +11869,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17189,54 +11957,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17325,54 +12045,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17461,54 +12133,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17597,54 +12221,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17733,54 +12309,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -17869,54 +12397,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18005,54 +12485,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18141,54 +12573,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18277,54 +12661,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18413,54 +12749,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18549,54 +12837,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18685,54 +12925,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18821,54 +13013,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -18957,54 +13101,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19093,54 +13189,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19229,54 +13277,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19365,54 +13365,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19501,54 +13453,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19637,54 +13541,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19773,54 +13629,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -19909,54 +13717,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -20045,54 +13805,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -20181,54 +13893,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -20317,54 +13981,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -20518,54 +14134,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -20719,54 +14287,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -20920,54 +14440,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -21121,54 +14593,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -21322,54 +14746,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -21523,54 +14899,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -21724,54 +15052,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -21925,54 +15205,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -22126,54 +15358,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -22327,54 +15511,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -22528,54 +15664,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -22729,54 +15817,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -22865,54 +15905,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23001,54 +15993,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23137,54 +16081,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23273,54 +16169,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23409,54 +16257,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23545,54 +16345,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23681,54 +16433,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23817,54 +16521,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -23953,54 +16609,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24089,54 +16697,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24225,54 +16785,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24361,54 +16873,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24497,54 +16961,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24633,54 +17049,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24769,54 +17137,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -24905,54 +17225,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25041,54 +17313,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25177,54 +17401,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25313,54 +17489,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25433,70 +17561,22 @@ "device control aggregate document": { "device control document": [ { - "device type": "plate reader", - "detection type": "Absorbance" - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_220", - "sample document": { - "location identifier": "I21", - "sample identifier": "SAMP567589", - "well plate identifier": "Plate1", - "custom information document": { - "group identifier": "SAMP567589" - } - }, - "error aggregate document": { - "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_220", + "sample document": { + "location identifier": "I21", + "sample identifier": "SAMP567589", + "well plate identifier": "Plate1", + "custom information document": { + "group identifier": "SAMP567589" + } + }, + "error aggregate document": { + "error document": [ { "error": "Error", "error feature": "CV%" @@ -25585,54 +17665,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25721,54 +17753,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25857,54 +17841,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -25993,54 +17929,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -26194,54 +18082,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -26395,54 +18235,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -26596,54 +18388,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -26797,54 +18541,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -26998,54 +18694,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -27183,70 +18831,22 @@ "device control aggregate document": { "device control document": [ { - "device type": "plate reader", - "detection type": "Absorbance" - } - ] - }, - "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_237", - "sample document": { - "location identifier": "J13", - "sample identifier": "SAMP567548", - "well plate identifier": "Plate1", - "custom information document": { - "group identifier": "SAMP567548" - } - }, - "error aggregate document": { - "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, + "device type": "plate reader", + "detection type": "Absorbance" + } + ] + }, + "measurement identifier": "MOLDEV_SOFTMAX_PRO_TEST_ID_237", + "sample document": { + "location identifier": "J13", + "sample identifier": "SAMP567548", + "well plate identifier": "Plate1", + "custom information document": { + "group identifier": "SAMP567548" + } + }, + "error aggregate document": { + "error document": [ { "error": "Error", "error feature": "CV%" @@ -27400,54 +19000,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -27601,54 +19153,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -27802,54 +19306,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -28003,54 +19459,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%" @@ -28204,54 +19612,6 @@ }, "error aggregate document": { "error document": [ - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, - { - "error": "Error", - "error feature": "CV%" - }, - { - "error": "Error", - "error feature": "MeanResult" - }, - { - "error": "Error", - "error feature": "Result" - }, - { - "error": "Error", - "error feature": "Std.Dev." - }, { "error": "Error", "error feature": "CV%"